-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.frm
105 lines (84 loc) · 2.97 KB
/
about.frm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
VERSION 5.00
Begin VB.Form about
BorderStyle = 0 'None
Caption = "About SteamyDock"
ClientHeight = 9615
ClientLeft = 0
ClientTop = 0
ClientWidth = 11385
ControlBox = 0 'False
Icon = "about.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 9615
ScaleWidth = 11385
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.PictureBox picAbout
Appearance = 0 'Flat
AutoRedraw = -1 'True
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 9615
Left = 0
Picture = "about.frx":058A
ScaleHeight = 641
ScaleMode = 3 'Pixel
ScaleWidth = 761
TabIndex = 0
Top = 0
Width = 11415
End
End
Attribute VB_Name = "about"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
' display the version number on the general panel
'Call displayVersionNumber
End Sub
Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.Hide
End Sub
'---------------------------------------------------------------------------------------
' Procedure : displayVersionNumber
' Author : beededea
' Date : 29/02/2020
' Purpose :
'---------------------------------------------------------------------------------------
'
Sub displayVersionNumber()
On Error GoTo displayVersionNumber_Error
''If debugflg = 1 Then msgBox "%displayVersionNumber"
' about.lblMajorVersion.Caption = App.Major
' about.lblMinorVersion.Caption = App.Minor
' about.lblRevisionNum.Caption = App.Revision
On Error GoTo 0
Exit Sub
displayVersionNumber_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure displayVersionNumber of Form dock"
End Sub
'---------------------------------------------------------------------------------------
' Procedure : lblPunklabsLink_Click
' Author : beededea
' Date : 03/03/2020
' Purpose :
'---------------------------------------------------------------------------------------
'
Private Sub lblPunklabsLink_Click()
On Error GoTo lblPunklabsLink_Click_Error
''If debugflg = 1 Then msgBox "%lblPunklabsLink_Click"
'Call ShellExecute(Me.hWnd, "Open", "http://www.punklabs.com", vbNullString, App.Path, 1)
On Error GoTo 0
Exit Sub
lblPunklabsLink_Click_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure lblPunklabsLink_Click of Form about"
End Sub
Private Sub picAbout_Click()
Me.Hide
End Sub