Dave I have done that and set up a Recordset which lets me movenext.
I had all this working in a VBA module calling a modal Form but didn't like it because I couldn't do anything else (with the Form open)
So now I'm trying to put all the code in the Form module to avoid that.
But I'm a bit stuck on how to stop execution while I 'do stuff' with the results. I want to loop through my recordset, conditionally edit some data, then resume the loop.
I got this idea from Google but it seems a bit odd.. but may work.
Code:
Do While KeepGoing = False
DoEvents
Loop
KeepGoing is a global Boolean and set true in a command button.
Is this an ok concept ? Or a bit mickey mouse ?
Also, while stepping through my code in the Form, is there any way to see Form view and what's in its controls ?