-
Notifications
You must be signed in to change notification settings - Fork 0
/
About.vb
20 lines (17 loc) · 936 Bytes
/
About.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Public Class About
Private Sub About_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Setup The Form's Title To Be The Product's Name
Me.Text = "About " & My.Application.Info.ProductName
'Setup The Labels Text To Equal ProductName and Description Respectively
LabelX1.Text = My.Application.Info.ProductName
LabelX5.Text = My.Application.Info.Description
LabelX6.Text = My.Application.Info.Version.ToString
LabelX8.Text = My.Application.Info.Copyright
End Sub
Private Sub LabelX10_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LabelX10.Click
Process.Start("http://twitter.com/deavmi")
End Sub
Private Sub LabelX9_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LabelX9.Click
Process.Start("http://deavmi.github.io/KeyStatus/")
End Sub
End Class