mirror of
https://github.com/bellingcat/reddit-post-scraping-tool.git
synced 2026-06-14 22:48:30 +03:00
1.6.0.0
Added Tool tips on the Main Form controls and auto complete on the Listing and Timeframe controls.
This commit is contained in:
17
RPST GUI/RPST/DeveloperBox.vb
Normal file
17
RPST GUI/RPST/DeveloperBox.vb
Normal file
@@ -0,0 +1,17 @@
|
||||
Public Class DeveloperBox
|
||||
Private Sub DeveloperForm_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
GreetingLabel.BackColor = Color.Transparent
|
||||
AboutMeLinkLabel.BackColor = Color.Transparent
|
||||
LinkLabelBuyMeACoffee.BackColor = Color.Transparent
|
||||
End Sub
|
||||
|
||||
Private Sub AboutMeLinkLabel_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles AboutMeLinkLabel.LinkClicked
|
||||
' I couldn't find a proper way to open a url
|
||||
' Process.Start() did not work
|
||||
Shell("cmd /c start https://about.me/rly0nheart")
|
||||
End Sub
|
||||
|
||||
Private Sub BuyMeACoffeeLinkLabel_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles LinkLabelBuyMeACoffee.LinkClicked
|
||||
Shell("cmd /c start https://buymeacoffee.com/_rly0nheart")
|
||||
End Sub
|
||||
End Class
|
||||
Reference in New Issue
Block a user