-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentrychoose.frm
94 lines (90 loc) · 2.41 KB
/
entrychoose.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
VERSION 5.00
Begin VB.Form Form8
BackColor = &H00008000&
Caption = "Form8"
ClientHeight = 4800
ClientLeft = 120
ClientTop = 450
ClientWidth = 5805
LinkTopic = "Form8"
ScaleHeight = 4800
ScaleWidth = 5805
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton cmdLab
Caption = "Lab"
BeginProperty Font
Name = "Corbel"
Size = 14.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 3360
MaskColor = &H8000000D&
TabIndex = 3
Top = 3000
Width = 1455
End
Begin VB.CommandButton cmdClass
Caption = "Class"
BeginProperty Font
Name = "Corbel"
Size = 14.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 840
MaskColor = &H8000000D&
TabIndex = 2
Top = 3000
Width = 1455
End
Begin VB.PictureBox picClass
Height = 1455
Left = 840
Picture = "entrychoose.frx":0000
ScaleHeight = 1395
ScaleWidth = 1395
TabIndex = 1
Top = 1320
Width = 1455
End
Begin VB.PictureBox picLab
Height = 1455
Left = 3360
Picture = "entrychoose.frx":17E5
ScaleHeight = 1395
ScaleWidth = 1395
TabIndex = 0
Top = 1320
Width = 1455
End
End
Attribute VB_Name = "Form8"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdClass_Click()
Unload Me
Form7.Show
End Sub
Private Sub cmdLab_Click()
Unload Me
Form6.Show
End Sub
Private Sub picClass_Click()
Unload Me
Form7.Show
End Sub
Private Sub picLab_Click()
Unload Me
Form6.Show
End Sub