jadams0173
Technical User
- Feb 18, 2005
- 1,210
Hey all. I'm very new to recordset but am learning. Is it possible to loop through a DAO recordset until .EOF and each time the loops executed display each record in a form say in datasheet or continues style? something like
open some form readonly
with rs
do until rs .EOF
forms!<name>!<txtbox>= .fields <fieldname>
.movenext
add new line in form
loop
I am just interested in displaying the data in an unbound form for readonly. there may only be 1 record or could be 100 records....any ideas?
open some form readonly
with rs
do until rs .EOF
forms!<name>!<txtbox>= .fields <fieldname>
.movenext
add new line in form
loop
I am just interested in displaying the data in an unbound form for readonly. there may only be 1 record or could be 100 records....any ideas?