Popup to Display Progress of Query

ootkhopdi

Registered User.
Local time
Today, 12:01
Joined
Oct 17, 2013
Messages
181
Hi,,

i m doing some events in loop
in this loop
a update query run "n" times
then another select query runs and closed
then again update query runs..

it loop "n" times

i want to create a pop up form for displaying query run "n1" times and to run "n2" times where n1+n2=n
and displaying massage "Please Wait, Updation in Progress"

please give me solution

how can i do it,,

Thanks in advance
 
try the inbuilt progress bar first.
it uses acsyscmd, to add a small progress bar in the status line at the bottom.

acsyscmd initmeter arguments
acsyscmd updatemeter arguments
acsyscmd removemeter (when done)

if you get the logic worked out for this, then you could replace that meter with a larger "progress form" of your own - a bit more work, but a similar idea.
 
here is a sample db, you should be able
to incorporate the form (frmStatusMeter and
the Module to your db.

examine the code behind the TestForm.
 

Attachments

Where do you put the queries that you want to show progress for?
 

Users who are viewing this thread

Back
Top Bottom