I've looked this up and still can't get it right. Have a recordset that is in sequential order by date and I need to get 30 account numbers into 30 different text boxes on a form. Here is the start of the code:
'Fill the recordset
rscardnos.Open sel_card_nos
'Find the start of the card sequence in the record set
rscardnos.Find (Me.tbstartcardno)
It bombs on the rscardnos.Find (Me.tbstartcardno)
rscardnos is the recordset
Me.tbstartcardno is the first text box on the form.
Just need to know whats wrong with the Find. (there is more code after this, but I've test that)
Thanks in advance
jpl
'Fill the recordset
rscardnos.Open sel_card_nos
'Find the start of the card sequence in the record set
rscardnos.Find (Me.tbstartcardno)
It bombs on the rscardnos.Find (Me.tbstartcardno)
rscardnos is the recordset
Me.tbstartcardno is the first text box on the form.
Just need to know whats wrong with the Find. (there is more code after this, but I've test that)
Thanks in advance
jpl