hello all, i really hope you can help me.
im trying to get a list of customers which are in my database to show up in a combo box but with the code i currently have, it only shows the last record that was entered
rs.MoveLast
With Me.Combo1
.Clear
Do
.AddItem rs.Fields("CustomerFirstName")
rs.MoveNext
Loop Until rs.EOF
End With
under form load^^
using sql
thanks, much help would be appreciated