probleme dans une question en vb6
j'ai un exercice et je suis bloqué dans la 4eme question
Un Double-Click sur un étudiant de la listebox permet de charger les informations correspondantes dans le frame des informations.
mon projet comporte des combobox , textbox, des checked voici mon
#
code:
Code:
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
| Combo2.AddItem Combo2.Text
End Sub
Private Sub Command2_Click()
Text1.Text = Clear
Text2.Text = Clear
Combo1.Text = Clear
Combo2.Text = Clear
Check1.Value = 0
Check2.Value = 0
Check3.Value = 0
End Sub
Private Sub Command3_Click()
End
End Sub
Private Sub Form_Load()
Dim i As Integer
For i = 1980 To 2010
Combo1.AddItem i
Next
Combo2.AddItem "sc.exp"
Combo2.AddItem "sc.math"
Combo2.AddItem "lettre"
End Sub |