-
Notifications
You must be signed in to change notification settings - Fork 2
/
aboutBox.vb
19 lines (15 loc) · 995 Bytes
/
aboutBox.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Public NotInheritable Class aboutBox
Private Sub AboutBox1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.Text = "About CBus Plugin"
Me.LabelProductName.Text = "CommandFusion CBus Plugin"
Me.LabelVersion.Text = "v1.1"
Me.LabelCopyright.Text = "Distribute Freely"
Me.LabelCompanyName.Text = "Original Source by Ben Nuttall ([email protected])"
Me.TextBoxDescription.Text = "This addin creates a myriad of commands and feedback items based on a physical CBus network." & vbCrLf & vbCrLf & "A JavaScript file is also deployed enabling advanced feedback processing and command generation."
End Sub
Private Sub OKButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OKButton.Click
Me.Close()
End Sub
Private Sub LabelProductName_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LabelProductName.Click
End Sub
End Class