We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c267e42 commit ee27fe8Copy full SHA for ee27fe8
1 file changed
Form_CLI_UI.vb
@@ -1850,5 +1850,18 @@ all: Includes notes for all reprinted versions from enabled sources")
1850
Private Sub Label38_Click(sender As Object, e As EventArgs)
1851
1852
End Sub
1853
+
1854
+ Private Sub Button6_Click(sender As Object, e As EventArgs) Handles Button6.Click
1855
+ Dim url = "https://buymeacoffee.com/ebullient"
1856
+ Try
1857
+ Dim psi As New ProcessStartInfo With {
1858
+ .FileName = url,
1859
+ .UseShellExecute = True
1860
+ }
1861
+ Process.Start(psi)
1862
+ Catch ex As Exception
1863
+ MessageBox.Show("Could not open the website: " & ex.Message)
1864
+ End Try
1865
+ End Sub
1866
End Class
1867
0 commit comments