Added Tool tips on the Main Form controls and auto complete on the Listing and Timeframe controls.
This commit is contained in:
Richard Mwewa
2023-08-09 04:14:00 +02:00
committed by GitHub
parent d266301917
commit 3576bcbf45
28 changed files with 6087 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
Public Class FormPosts
Private Sub FormResults_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Me.Text = $"{Me.Text} - {FormMain.TextBoxKeyword.Text}, r/{FormMain.TextBoxSubreddit.Text}, {FormMain.NumericUpDownLimit.Text}, {FormMain.ComboBoxListing.Text}, {FormMain.ComboBoxTimeframe.Text}"
End Sub
End Class