Evening all, once more...
I have another quick query that I'm struggling to find any answers to using our good friend Google.
I have a loop, that looks a little like:
Code:
Do While Not rs.EOF
code here...
Where rs = some recordset.
Now, what ideally I'd like, is for at some point during the 'code here...' bit, for a MsgBox to appear, the user clicks 'Ok', then the script pauses until a resume button has been pressed.
All the examples I can find revolve around using a timer, which isn't any good, as the amount of time required will be unknown, thus the resume button.
It's basically going to pause the script so that the user can check over all the details it's retrieved, which on occassion could be 100+ records, other times 2, so assigning a 3 minute wait time isn't really the way to go.
Any ideas, suggestions, experiences? Please share!
Thanks a bunch.