-
Notifications
You must be signed in to change notification settings - Fork 2
/
About.vb
21 lines (16 loc) · 822 Bytes
/
About.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Public Class About
Private Sub About_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub
Private Sub TMClose_Button_Click(sender As Object, e As EventArgs) Handles TMClose_Button.Click
Me.DialogResult = System.Windows.Forms.DialogResult.OK
Me.Close()
End Sub
Private Sub Jan_Link_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles Jan_Link.LinkClicked
Me.Jan_Link.LinkVisited = True
System.Diagnostics.Process.Start("https://sites.google.com/site/janbeck/")
End Sub
Private Sub Sam_Link_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles Sam_Link.LinkClicked
Me.Sam_Link.LinkVisited = True
System.Diagnostics.Process.Start("http://www.repairfaq.org/sam/")
End Sub
End Class