Is there an example of using a progressbar while looping through a resultset of an SQL statement. I have progressbars in other places in my app and they work fine but if I use it while looping through a resultset the progress never gets updated.
Without seeing what you have done it is impossible to give a concrete advice.
You need to give more information.
Do you really need a ProgressBar to loop through a resultsetof an SQL statement.
Is it really that long, what are you doing in this loop ?
Is there an example of using a progressbar while looping through a resultset of an SQL statement. I have progressbars in other places in my app and they work fine but if I use it while looping through a resultset the progress never gets updated.
are you using ExecQueryAsync?
i guess the reason for that is the sql process is freezing your app. use ExecQueryAsync and update every query your progress bar. it may be that you will need to use Sleep(0) function to refresh the progress bar and redraw it but try first without Sleep(0) but use ExecQueryAsync.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.