-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQForm.vb
executable file
·92 lines (92 loc) · 3.06 KB
/
QForm.vb
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
Public Class QForm
Public Shared s As Integer
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Me.Close()
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim q As New q
QForm.s = 1
Me.Hide()
q.Owner = Me
q.ShowDialog()
End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
Dim q As New q
QForm.s = 2
Me.Hide()
q.Owner = Me
q.ShowDialog()
End Sub
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
Dim q As New q
QForm.s = 3
Me.Hide()
q.Owner = Me
q.ShowDialog()
End Sub
Private Sub Button10_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button10.Click
Dim q As New q
QForm.s = 4
Me.Hide()
q.Owner = Me
q.ShowDialog()
End Sub
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
Dim q As New q
QForm.s = 5
Me.Hide()
q.Owner = Me
q.ShowDialog()
End Sub
Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
Dim q As New q
QForm.s = 6
Me.Hide()
q.Owner = Me
q.ShowDialog()
End Sub
Private Sub Button11_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button11.Click
Dim q As New q
QForm.s = 7
Me.Hide()
q.Owner = Me
q.ShowDialog()
End Sub
Private Sub Button7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button7.Click
Dim q As New q
QForm.s = 8
Me.Hide()
q.Owner = Me
q.ShowDialog()
End Sub
Private Sub Button12_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button12.Click
Dim q As New q
QForm.s = 9
Me.Hide()
q.Owner = Me
q.ShowDialog()
End Sub
Private Sub Button8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button8.Click
Dim q As New q
QForm.s = 10
Me.Hide()
q.Owner = Me
q.ShowDialog()
End Sub
Private Sub Button9_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button9.Click
Dim q As New q
QForm.s = 11
Me.Hide()
q.Owner = Me
q.ShowDialog()
End Sub
Private Sub QForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim anscode As Boolean = MainForm.te_code
If anscode = True Then
Button13.Enabled = True
End If
End Sub
Private Sub Button13_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button13.Click
AF.ShowDialog()
End Sub
End Class