Skip to content

Commit ee27fe8

Browse files
01042024 Fixed Coffee Button
1 parent c267e42 commit ee27fe8

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

Form_CLI_UI.vb

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1850,5 +1850,18 @@ all: Includes notes for all reprinted versions from enabled sources")
18501850
Private Sub Label38_Click(sender As Object, e As EventArgs)
18511851

18521852
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
18531866
End Class
18541867

0 commit comments

Comments
 (0)