T
Tony Piperato
Greetings,
I am opening a recordset and would like to print the results in a report
detail section to the txtDateStart and txtDateStop text boxes. I have the
following code:
Do Until rsMyRS.EOF
txtDateStart = rsMyRS("DateStart")
txtDateStop = rsMyRS("DateStop")
rsMyRS.MoveNext
Loop
There are nine records in this particular recordset (there could be
infinitely more), but I only get the first records' values printed nine
times instead of EACH individual record. Any thoughts?
Thanks in advance for your help.
Tony
I am opening a recordset and would like to print the results in a report
detail section to the txtDateStart and txtDateStop text boxes. I have the
following code:
Do Until rsMyRS.EOF
txtDateStart = rsMyRS("DateStart")
txtDateStop = rsMyRS("DateStop")
rsMyRS.MoveNext
Loop
There are nine records in this particular recordset (there could be
infinitely more), but I only get the first records' values printed nine
times instead of EACH individual record. Any thoughts?
Thanks in advance for your help.
Tony