VBA to slowly scroll through table to allow visual user inspection

pony

New member
Local time
Today, 14:37
Joined
Jul 29, 2009
Messages
2
Hi All,

I'm wondering if there is any vba code i can use in access to

open table (i can do this)
slowly scroll through it on the screen
ask user if table looks ok (i can do this)

its the middle part i have trouble with. really it would be great if user could activate and scroll through the table while the msgbox is open, see if looks ok and then press 'Yes' or 'No' to determine course of code, but i dont think thats possible.

Any ideas?
 
Hi
I don't know if I understood you properly by try:
Use timer event and timeinterval property to scroll through the table.
Instead of using Msg box put two buttons on form "Table is Ok", "table is not ok" and raise propper event

TomBra
 
Thanks Tombra,

I think i'm going to break it up so that new form pop's up with button which user can press to continue the process. that way user can take as long as they want to check the table.

probably not perfect but easy and robust enough way to do it i think

Cheers
 

Users who are viewing this thread

Back
Top Bottom