Hello,
I know that this has probably been asked a million times but....
In VB, I would have done the following, but this is not possible in Access
MyDB.Open CurrentProject.Path & "\" & CurrentProject.Name
rsDB.CursorLocation = adUseClient
rsDB.CursorType = adOpenDynamic
rsDB.Open strSQL, MyDB
If Not rsDB.EOF Then
While Not rsDB.EOF
Combo1.additem rsDB("fldFirstName")
rsDB.MoveNext
Wend
Wend
End If
rsDB.Close
Any suggestions
Best regards,
Aaron
I know that this has probably been asked a million times but....
In VB, I would have done the following, but this is not possible in Access
MyDB.Open CurrentProject.Path & "\" & CurrentProject.Name
rsDB.CursorLocation = adUseClient
rsDB.CursorType = adOpenDynamic
rsDB.Open strSQL, MyDB
If Not rsDB.EOF Then
While Not rsDB.EOF
Combo1.additem rsDB("fldFirstName")
rsDB.MoveNext
Wend
Wend
End If
rsDB.Close
Any suggestions
Best regards,
Aaron