-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm2.frm
267 lines (242 loc) · 6.2 KB
/
Form2.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
VERSION 5.00
Begin VB.Form Form2
BackColor = &H00FFFFFF&
Caption = "Form2"
ClientHeight = 6405
ClientLeft = 120
ClientTop = 465
ClientWidth = 11370
LinkTopic = "Form2"
ScaleHeight = 6405
ScaleWidth = 11370
StartUpPosition = 3 'Windows Default
WindowState = 2 'Maximized
Begin VB.CommandButton Command1
Height = 495
Left = 120
Picture = "Form2.frx":0000
Style = 1 'Graphical
TabIndex = 0
Top = 120
Width = 975
End
Begin VB.Image Image20
Height = 810
Left = 1200
Picture = "Form2.frx":05F0
Top = 0
Width = 4575
End
Begin VB.Image Image19
Height = 5175
Left = -240
Picture = "Form2.frx":217F
Stretch = -1 'True
Top = 840
Width = 1410
End
Begin VB.Image Image16
Height = 1065
Left = 1800
Picture = "Form2.frx":2936
Stretch = -1 'True
Top = 8760
Width = 2115
End
Begin VB.Image Image15
Height = 1065
Left = 1560
Picture = "Form2.frx":4E2F
Stretch = -1 'True
Top = 6840
Width = 2475
End
Begin VB.Image Image14
Height = 915
Left = 13080
Picture = "Form2.frx":84C6
Stretch = -1 'True
Top = 8880
Width = 2370
End
Begin VB.Image Image12
Height = 975
Left = 9240
Picture = "Form2.frx":B730
Stretch = -1 'True
Top = 8880
Width = 2235
End
Begin VB.Image Image11
Height = 1005
Left = 5400
Picture = "Form2.frx":EE93
Stretch = -1 'True
Top = 8880
Width = 2370
End
Begin VB.Image Image10
Height = 1110
Left = 9240
Picture = "Form2.frx":10B6C
Stretch = -1 'True
Top = 6840
Width = 2445
End
Begin VB.Image Image9
Height = 1035
Left = 12960
Picture = "Form2.frx":12F7B
Stretch = -1 'True
Top = 6840
Width = 2370
End
Begin VB.Image Image7
Height = 1065
Left = 5280
Picture = "Form2.frx":1B5B3
Stretch = -1 'True
Top = 6840
Width = 2400
End
Begin VB.Image Image4
Height = 4080
Left = 12720
Picture = "Form2.frx":1D7E7
Stretch = -1 'True
Top = 1440
Width = 2220
End
Begin VB.Image Image6
Height = 4920
Left = 14640
Picture = "Form2.frx":266E2
Stretch = -1 'True
Top = 960
Width = 5040
End
Begin VB.Image Image5
Height = 6660
Left = -720
Picture = "Form2.frx":38617
Stretch = -1 'True
Top = 6000
Width = 19365
End
Begin VB.Image Image2
Height = 4290
Left = 5040
Picture = "Form2.frx":3BD36
Stretch = -1 'True
Top = 1320
Width = 3675
End
Begin VB.Image Image1
Height = 3960
Left = 2040
Picture = "Form2.frx":40607
Stretch = -1 'True
Top = 1440
Width = 2145
End
Begin VB.Image Image3
Height = 3840
Left = 9600
Picture = "Form2.frx":4B045
Stretch = -1 'True
Top = 1560
Width = 1995
End
Begin VB.Image Image18
Height = 795
Left = 5280
Picture = "Form2.frx":60150
Stretch = -1 'True
Top = 0
Width = 6675
End
Begin VB.Image Image17
Height = 855
Left = 0
Picture = "Form2.frx":626D7
Stretch = -1 'True
Top = 0
Width = 18930
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Combo1_Click()
If (Combo1.Text = "SAMSUNG") Then
Form11.Show
ElseIf (Combo1.Text = "MOTOROLA") Then
Form12.Show
ElseIf (Combo1.Text = "MICROMAX") Then
Form13.Show
ElseIf (Combo1.Text = "LAVA") Then
Form14.Show
ElseIf (Combo1.Text = "SONY") Then
Form15.Show
ElseIf (Combo1.Text = "XIAOMI") Then
Form16.Show
ElseIf (Combo1.Text = "VIVO") Then
Form17.Show
ElseIf (Combo1.Text = "GOOGLE") Then
Form18.Show
ElseIf (Combo1.Text = "LENOVO") Then
Form19.Show
ElseIf (Combo1.Text = "HTC") Then
Form20.Show
End If
End Sub
Private Sub Command1_Click()
Form1.Show
End Sub
Private Sub Image1_Click()
Form6.Show
End Sub
Private Sub Image10_Click()
Form13.Show
End Sub
Private Sub Image11_Click()
Form18.Show
End Sub
Private Sub Image12_Click()
Form15.Show
End Sub
Private Sub Image13_Click()
Form20.Show
End Sub
Private Sub Image14_Click()
Form19.Show
End Sub
Private Sub Image15_Click()
Form12.Show
End Sub
Private Sub Image16_Click()
Form14.Show
End Sub
Private Sub Image2_Click()
Form36.Show
End Sub
Private Sub Image3_Click()
Form54.Show
End Sub
Private Sub Image4_Click()
Form56.Show
End Sub
Private Sub Image6_Click()
Form52.Show
End Sub
Private Sub Image7_Click()
Form16.Show
End Sub
Private Sub Image8_Click()
Form17.Show
End Sub
Private Sub Image9_Click()
Form11.Show
End Sub