Salut j'ai une table Nommé ELEVe Au lieu d'afficher La liste d Matricule (Mat) des eleves J Veux Leurs Noms (Nom) Ainsi quand je selectionne un il m'affiche tous voila programme
Remarque:
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 Private Sub Form_Load() Ouverture With E_Eleves if not .eof then .movefirst While Not .EOF List1.AddItem !Nom .MoveNext Wend End With end sub Private Sub Text1_LostFocus() If Text1 <> "" Then With E_Eleves .Index = "eleve_ndx" .Seek "=", Text1 If Not .NoMatch Then Text2 = !Nom Text3 = !Cls Text4 = !Mt End If End With End If end sub Private Sub List1_Click() 'pr list Text1 = List1 Text1_LostFocus End sub
l Remplissage du list par matricule sa marche bien Mais le Probleme pr les Nom Ainsi effectuer la recherche![]()
Partager