D
Dave
Hi,
I curently use the following method to populate a list box
Private Sub Form_Open(Cancel As Integer)
varstr = "SELECT UserKEyID, UserID, FullName FROM tbl_Users"
Me.lstUsers.RowSource = varstr
End Sub
however this locks up the table, how can i get the same effect without
locking the table
cheers
Dave
I curently use the following method to populate a list box
Private Sub Form_Open(Cancel As Integer)
varstr = "SELECT UserKEyID, UserID, FullName FROM tbl_Users"
Me.lstUsers.RowSource = varstr
End Sub
however this locks up the table, how can i get the same effect without
locking the table
cheers
Dave