Hi !. I am new to VB6 programing. So far I have dicovered how to place a progress bar1 on a form. now I am triing to get the bar to advance using the counter during the calculation process using code.
Iam using a do while loop for the calc
do
counter = counter + 1
The counter may increment from 1 to 555.
progressbar1.min = 0
progressbar1.max = 100.
this will be in a do while loop.
The bar is in a label called lbltime, visible properties are false till the cmd calc
click event, than the prb1 turns visible.
lbltime.caption = ' will show the prb1
the prb1 lbltime is horizontaly sized, with 15 increments
The "Q" is how do I get the code to act on the counter count up, so the progress bar will advance with the counter.
Thanks Heaps.........<> Yet
Iam using a do while loop for the calc
do
counter = counter + 1
The counter may increment from 1 to 555.
progressbar1.min = 0
progressbar1.max = 100.
this will be in a do while loop.
The bar is in a label called lbltime, visible properties are false till the cmd calc
click event, than the prb1 turns visible.
lbltime.caption = ' will show the prb1
the prb1 lbltime is horizontaly sized, with 15 increments
The "Q" is how do I get the code to act on the counter count up, so the progress bar will advance with the counter.
Thanks Heaps.........<> Yet