Ok, sorry if i'm not clear.
I've got 2 forms.
In the first form i've got a button. When i click on it, it open the second form and send to it an OpenArg whiwh contains an id.
On the second form i'v got a list box with a lot of row. I wish to select the row and I want to select the line that has...
Hello,
I try to select by the vba code, one element in a list box.
I found this code on this site:
Function Selectionner(Liste As ListBox, Colonne As Integer, Chercher As String)
Dim i As Integer
Dim Trouve As Boolean
For i = 0 To Liste.ListCount - 1
If...