I need some help with the correct syntax.
I have a form with ten labels, lbl1 - lbl10.
I need to get ten records from a database and display each record in a label. I'm not sure of the correct way to do this.
Thanks
- - - - - -
for i = 1 to 10
Lbl "(i)" = rs("word")
if not recordsetObject.EOF then
RecordsetObject.movenext
Else
Exit For
End if
Next
