Recent content by Grosraymond

  1. G

    Selection in a list box, which prevents all other controls to operate

    I found the solution. I called my function in the open form function. Now i call it in the load function and it works. Thank's for your help.
  2. G

    Selection in a list box, which prevents all other controls to operate

    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...
  3. G

    Hello everybody

    Hello, I'm new on this forum. I developp somtimes with access and VBA. See you!
  4. G

    Selection in a list box, which prevents all other controls to operate

    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...
Back
Top Bottom