Load event procedure

  • Thread starter Thread starter SoRico
  • Start date Start date
S

SoRico

How do I create a Load event procedure that moves the focus to the first
query name in the list box when form opens.
 
I'd move that stuff to the Current event:

Assuming the first query name equates to the first item in the listbox's
list:
Private Sub Form_Current()
Me.lstMyList.SetFocus
Me.lstMyList.Selected(0) = True
End Sub

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia
 
Back
Top