Setting Text Fields in a Tabular Form
I have an Access tabular form whose detail section contains several text box controls, Text1, Text2, Text3 etc. I want to iterate through a programmatically created recordset rsMyForm, assigning values from the recordset to the text box controls on the form, for example:
Me.Text2 = rsMyForm!Some_Column
Can anyone tell me how to do this?
I'm an experienced VBA programmer and have build some pretty sophisticated forms, but my experience with tabular forms is limited to forms that run off a table or query.
Thanks much!
AppBuilder
|