bonjour,
voilà j'ai créer une form permettant d'afficher des identifiants et mot de passes, celle-ci est composer de :
1 label et 1 textbox "recherche"
1 boutton "valide"
1 label "id" et 10 textbox "Id"
1 label "mdp" et 10 textbox "mdp"
le principe est :
si texbox "recherche" = vide
alors label "id & "mdp" visible = false
et
boutton "valide" enabled = false
voilà pourquoi dans le code vous pourrez voir que j'utilise plusieurs fois :
voici le code complet
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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 BtValide.Enabled = False 'chache les label LabelId.Visible = False LabelMdp.Visible = False 'cache les textbox ID TextBox1Id.Visible = False TextBox2Id.Visible = False TextBox3Id.Visible = False TextBox4Id.Visible = False TextBox5Id.Visible = False TextBox6Id.Visible = False TextBox7Id.Visible = False TextBox8Id.Visible = False TextBox9Id.Visible = False TextBox10Id.Visible = False 'cache les textbox MDP TextBox1Mdp.Visible = False TextBox2Mdp.Visible = False TextBox3Mdp.Visible = False TextBox4Mdp.Visible = False TextBox5Mdp.Visible = False TextBox6Mdp.Visible = False TextBox7Mdp.Visible = False TextBox8Mdp.Visible = False TextBox9Mdp.Visible = False TextBox10Mdp.Visible = False
1 / y'aurait-il un moyen plus simple et plus court surtout pour raccourcir le code ?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458 Public Class FrmIdMdp Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load BtValide.Enabled = False 'chache les label LabelId.Visible = False LabelMdp.Visible = False 'cache les textbox ID TextBox1Id.Visible = False TextBox2Id.Visible = False TextBox3Id.Visible = False TextBox4Id.Visible = False TextBox5Id.Visible = False TextBox6Id.Visible = False TextBox7Id.Visible = False TextBox8Id.Visible = False TextBox9Id.Visible = False TextBox10Id.Visible = False 'cache les textbox MDP TextBox1Mdp.Visible = False TextBox2Mdp.Visible = False TextBox3Mdp.Visible = False TextBox4Mdp.Visible = False TextBox5Mdp.Visible = False TextBox6Mdp.Visible = False TextBox7Mdp.Visible = False TextBox8Mdp.Visible = False TextBox9Mdp.Visible = False TextBox10Mdp.Visible = False '' End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtValide.Click 'DECLARATION Dim Site(9) As String Dim IdMsn(6) As String Dim MdpMsn(6) As String Dim IdGmail As String Dim MdpGmail As String Dim IdYoutube As String Dim MdpYoutube As String Dim IdDailymotion As String Dim MdpDailymotion As String Dim IdNoip(2) As String Dim MdpNoip(2) As String Dim IdLogmein As String Dim MdpLogmein As String Dim IdForum(3) As String Dim MdpForum(3) As String Dim IdFilezilla(9) As String Dim MdpFilezilla(9) As String Dim Autorisation As Boolean '************************************************ 'chache les label LabelId.Visible = False LabelMdp.Visible = False 'cache les textbox ID TextBox1Id.Visible = False TextBox2Id.Visible = False TextBox3Id.Visible = False TextBox4Id.Visible = False TextBox5Id.Visible = False TextBox6Id.Visible = False TextBox7Id.Visible = False TextBox8Id.Visible = False TextBox9Id.Visible = False TextBox10Id.Visible = False 'cache les textbox MDP TextBox1Mdp.Visible = False TextBox2Mdp.Visible = False TextBox3Mdp.Visible = False TextBox4Mdp.Visible = False TextBox5Mdp.Visible = False TextBox6Mdp.Visible = False TextBox7Mdp.Visible = False TextBox8Mdp.Visible = False TextBox9Mdp.Visible = False TextBox10Mdp.Visible = False 'vide les texboxID TextBox1Id.Text = "" TextBox2Id.Text = "" TextBox3Id.Text = "" TextBox4Id.Text = "" TextBox5Id.Text = "" TextBox6Id.Text = "" TextBox7Id.Text = "" TextBox8Id.Text = "" TextBox9Id.Text = "" TextBox10Id.Text = "" 'vide les texboxMDP TextBox1Mdp.Text = "" TextBox2Mdp.Text = "" TextBox3Mdp.Text = "" TextBox4Mdp.Text = "" TextBox5Mdp.Text = "" TextBox6Mdp.Text = "" TextBox7Mdp.Text = "" TextBox8Mdp.Text = "" TextBox9Mdp.Text = "" TextBox10Mdp.Text = "" '*************************************** '*************LISTES DES SITES********** '*************************************** Site(0) = "*" Site(1) = "*" Site(2) = "*" Site(3) = "*" Site(4) = "*" Site(5) = "*" Site(6) = "*" Site(7) = "*" Site(8) = "*" Site(9) = "*" '*************************************** ' ' '*************************************** '*********LISTES DES ID & MDP*********** '*************************************** IdMsn(0) = "*" IdMsn(1) = "*" IdMsn(2) = "*" IdMsn(3) = "*" IdMsn(4) = "*" IdMsn(5) = "*" IdMsn(6) = "*" ' MdpMsn(0) = "*" MdpMsn(1) = "*" MdpMsn(2) = "*" MdpMsn(3) = "*" MdpMsn(4) = "*" MdpMsn(5) = "*" MdpMsn(6) = "*" '*************************************** IdGmail = "*" MdpGmail = "*" '*************************************** IdYoutube = "*" MdpYoutube = "*" '*************************************** IdDailymotion = "*" MdpDailymotion = "*" '*************************************** IdNoip(0) = "*" IdNoip(1) = "*" IdNoip(2) = "*" ' MdpNoip(0) = "*" MdpNoip(1) = "*" MdpNoip(2) = "*" '*************************************** IdLogmein = "*" MdpLogmein = "*" '*************************************** IdForum(0) = "*" IdForum(1) = "*" IdForum(2) = "*" IdForum(3) = "*" ' MdpForum(0) = "*" MdpForum(1) = "*" MdpForum(2) = "*" MdpForum(3) = "*" '*************************************** IdFilezilla(0) = "*" IdFilezilla(1) = "*" IdFilezilla(2) = "*" IdFilezilla(3) = "*" IdFilezilla(4) = "*" IdFilezilla(5) = "*" IdFilezilla(6) = "*" IdFilezilla(7) = "*" IdFilezilla(8) = "*" IdFilezilla(9) = "*" ' MdpFilezilla(0) = "*" MdpFilezilla(1) = "*" MdpFilezilla(2) = "*" MdpFilezilla(3) = "*" MdpFilezilla(4) = "*" MdpFilezilla(5) = "*" MdpFilezilla(6) = "*" MdpFilezilla(7) = "*" MdpFilezilla(8) = "*" MdpFilezilla(9) = "*" '*************************************** ' ' '*************************************** '********AFFICHAGE DES ID & MDP ******** '*************************************** ' "MSN" '*************************************** If TextBoxRecherche.Text = Site(0) Then Autorisation = True ' LabelId.Visible = True LabelMdp.Visible = True ' TextBox1Id.Visible = True TextBox2Id.Visible = True TextBox3Id.Visible = True TextBox4Id.Visible = True TextBox5Id.Visible = True TextBox6Id.Visible = True TextBox7Id.Visible = True ' TextBox1Mdp.Visible = True TextBox2Mdp.Visible = True TextBox3Mdp.Visible = True TextBox4Mdp.Visible = True TextBox5Mdp.Visible = True TextBox6Mdp.Visible = True TextBox7Mdp.Visible = True ' TextBox1Id.Text = IdMsn(0) TextBox2Id.Text = IdMsn(1) TextBox3Id.Text = IdMsn(2) TextBox4Id.Text = IdMsn(3) TextBox5Id.Text = IdMsn(4) TextBox6Id.Text = IdMsn(5) TextBox7Id.Text = IdMsn(6) ' TextBox1Mdp.Text = MdpMsn(0) TextBox2Mdp.Text = MdpMsn(1) TextBox3Mdp.Text = MdpMsn(2) TextBox4Mdp.Text = MdpMsn(3) TextBox5Mdp.Text = MdpMsn(4) TextBox6Mdp.Text = MdpMsn(5) TextBox7Mdp.Text = MdpMsn(6) End If ' "GMAIL" '*************************************** If TextBoxRecherche.Text = Site(1) Then Autorisation = True ' LabelId.Visible = True LabelMdp.Visible = True ' TextBox1Id.Visible = True TextBox1Mdp.Visible = True TextBox1Id.Text = IdGmail TextBox1Mdp.Text = MdpGmail End If ' "YOUTUBE" '*************************************** If TextBoxRecherche.Text = Site(2) Then Autorisation = True ' LabelId.Visible = True LabelMdp.Visible = True ' TextBox1Id.Visible = True TextBox1Mdp.Visible = True TextBox1Id.Text = IdYoutube TextBox1Mdp.Text = MdpYoutube End If ' "DAILYMOTION" '*************************************** If TextBoxRecherche.Text = Site(3) Then Autorisation = True ' LabelId.Visible = True LabelMdp.Visible = True ' TextBox1Id.Visible = True TextBox1Mdp.Visible = True TextBox1Id.Text = IdDailymotion TextBox1Mdp.Text = MdpDailymotion End If ' "NO-IP" '*************************************** If TextBoxRecherche.Text = Site(4) Then Autorisation = True ' LabelId.Visible = True LabelMdp.Visible = True ' TextBox1Id.Visible = True TextBox2Id.Visible = True TextBox3Id.Visible = True ' TextBox1Mdp.Visible = True TextBox2Mdp.Visible = True TextBox3Mdp.Visible = True ' TextBox1Id.Text = IdNoip(0) TextBox2Id.Text = IdNoip(1) TextBox3Id.Text = IdNoip(2) ' TextBox1Mdp.Text = MdpNoip(0) TextBox2Mdp.Text = MdpNoip(1) TextBox3Mdp.Text = MdpNoip(2) End If ' "LOGMEIN" '*************************************** If TextBoxRecherche.Text = Site(5) Then Autorisation = True ' LabelId.Visible = True LabelMdp.Visible = True ' TextBox1Id.Visible = True TextBox1Mdp.Visible = True TextBox1Id.Text = IdLogmein TextBox1Mdp.Text = MdpLogmein End If ' "FORUM" '*************************************** If TextBoxRecherche.Text = Site(6) Then Autorisation = True ' LabelId.Visible = True LabelMdp.Visible = True ' TextBox1Id.Visible = True TextBox2Id.Visible = True TextBox3Id.Visible = True TextBox4Id.Visible = True ' TextBox1Mdp.Visible = True TextBox2Mdp.Visible = True TextBox3Mdp.Visible = True TextBox4Mdp.Visible = True ' TextBox1Id.Text = IdForum(0) TextBox2Id.Text = IdForum(1) TextBox3Id.Text = IdForum(2) TextBox4Id.Text = IdForum(3) ' TextBox1Mdp.Text = MdpForum(0) TextBox2Mdp.Text = MdpForum(1) TextBox3Mdp.Text = MdpForum(2) TextBox4Mdp.Text = MdpForum(3) End If ' "FTP" '*************************************** If TextBoxRecherche.Text = Site(7) Then Autorisation = True ' LabelId.Visible = True LabelMdp.Visible = True ' TextBox1Id.Visible = True TextBox2Id.Visible = True TextBox3Id.Visible = True TextBox4Id.Visible = True TextBox5Id.Visible = True TextBox6Id.Visible = True TextBox7Id.Visible = True TextBox8Id.Visible = True TextBox9Id.Visible = True TextBox10Id.Visible = True ' TextBox1Mdp.Visible = True TextBox2Mdp.Visible = True TextBox3Mdp.Visible = True TextBox4Mdp.Visible = True TextBox5Mdp.Visible = True TextBox6Mdp.Visible = True TextBox7Mdp.Visible = True TextBox8Mdp.Visible = True TextBox9Mdp.Visible = True TextBox10Mdp.Visible = True ' TextBox1Id.Text = IdFilezilla(0) TextBox2Id.Text = IdFilezilla(1) TextBox3Id.Text = IdFilezilla(2) TextBox4Id.Text = IdFilezilla(3) TextBox5Id.Text = IdFilezilla(4) TextBox6Id.Text = IdFilezilla(5) TextBox7Id.Text = IdFilezilla(6) TextBox8Id.Text = IdFilezilla(7) TextBox9Id.Text = IdFilezilla(8) TextBox10Id.Text = IdFilezilla(9) ' TextBox1Mdp.Text = MdpFilezilla(0) TextBox2Mdp.Text = MdpFilezilla(1) TextBox3Mdp.Text = MdpFilezilla(2) TextBox4Mdp.Text = MdpFilezilla(3) TextBox5Mdp.Text = MdpFilezilla(4) TextBox6Mdp.Text = MdpFilezilla(5) TextBox7Mdp.Text = MdpFilezilla(6) TextBox8Mdp.Text = MdpFilezilla(7) TextBox9Mdp.Text = MdpFilezilla(8) TextBox10Mdp.Text = MdpFilezilla(9) End If ' "NOM NON VALIDE" '*************************************** If Not Autorisation Then MsgBox("Merci d'entrer un Nom Valide") Me.Show() 'chache les label LabelId.Visible = False LabelMdp.Visible = False 'cache les textbox ID TextBox1Id.Visible = False TextBox2Id.Visible = False TextBox3Id.Visible = False TextBox4Id.Visible = False TextBox5Id.Visible = False TextBox6Id.Visible = False TextBox7Id.Visible = False TextBox8Id.Visible = False TextBox9Id.Visible = False TextBox10Id.Visible = False 'cache les textbox MDP TextBox1Mdp.Visible = False TextBox2Mdp.Visible = False TextBox3Mdp.Visible = False TextBox4Mdp.Visible = False TextBox5Mdp.Visible = False TextBox6Mdp.Visible = False TextBox7Mdp.Visible = False TextBox8Mdp.Visible = False TextBox9Mdp.Visible = False TextBox10Mdp.Visible = False End If End Sub 'rend le boutton non clikage si textebox non rempli Private Sub TextBoxRecherche_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBoxRecherche.TextChanged 'cache boutton textbox et label si rien es spécifier dans texbox recherche If TextBoxRecherche.Text = "" Then BtValide.Enabled = False ' LabelId.Visible = False LabelMdp.Visible = False ' TextBox1Id.Visible = False TextBox2Id.Visible = False TextBox3Id.Visible = False TextBox4Id.Visible = False TextBox5Id.Visible = False TextBox6Id.Visible = False TextBox7Id.Visible = False TextBox8Id.Visible = False TextBox9Id.Visible = False TextBox10Id.Visible = False ' TextBox1Mdp.Visible = False TextBox2Mdp.Visible = False TextBox3Mdp.Visible = False TextBox4Mdp.Visible = False TextBox5Mdp.Visible = False TextBox6Mdp.Visible = False TextBox7Mdp.Visible = False TextBox8Mdp.Visible = False TextBox9Mdp.Visible = False TextBox10Mdp.Visible = False Else BtValide.Enabled = True End If End Sub End Class
2 / sachant que tout les "id " et "mdp" sont écris dans le code si je désire ne pas les entrées dans le code (éventuellement pour que l''application puisse être utiliser pour plusieurs personne) quel solution y'aurai t-il ?
Encore une fois merci de l'aide et du temps apporté![]()
Partager