Re: visual basic 6 progress bar?
- From: argusy <argusy@xxxxxxxxxxxxxxx>
- Date: Tue, 19 Feb 2008 20:32:42 +1030
Michael Larocca wrote:
I used the code from the resource center and I got the progress bar to work on its own as a first step. What I'm trying to do is display a progress bar for 1 Do Until loop within my program.<snip>
When I put the progress bar code on the out side of the loop, it ran the whole Do Until loop first and then displayed the progress bar filling up afterward:
(progress bar code)
Do until R = 51
(Do until code)
R = R + 1
Loop
(progress bar code)
This did not work.
In another part of this thread, I tossed in a query about using 'doevents'
change your code as follows and report back what happens
(progress bar code)
Do until R = 51
(Do until code)
R = R + 1
doevents
Loop
Graham
.
- References:
- Re: visual basic 6 progress bar?
- From: MikeD
- Re: visual basic 6 progress bar?
- From: Michael Larocca
- Re: visual basic 6 progress bar?
- Prev by Date: Re: visual basic 6 progress bar?
- Next by Date: Re: visual basic 6 progress bar?
- Previous by thread: Re: visual basic 6 progress bar?
- Next by thread: Re: visual basic 6 progress bar?
- Index(es):
Relevant Pages
|