Visual Basic 6 Progress Bar
Visual Basic 6 Progress Bar
(OP)
I need to now how to configure a progress bar in Viusla Basic 6
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Contact USThanks. We have received your request and will respond promptly. Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting Guidelines |
Visual Basic 6 Progress Bar
|
Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.
Here's Why Members Love Eng-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
RE: Visual Basic 6 Progress Bar
Make sure that the progress bar component is visable in the component toolbar (Microsoft common controls 6).
To chart the progress of say an iterated calculation that starts at 1 and goes to 251 do this:
progressbar1.min = 1
progressbar1.max = 252 'the last number of the loop + 1 becuase, the loop will add 1 extra to the progress bar.
for i = 1 to 251
progressbar1.value = progressbar1.value +1
next i
Hope this gives you an idea. I know this is a little rough, but it is off the top of my head....
Troy Williams
fenris@hotmail.com
I am a recent Mining Engineering Graduate with an interest in Genetic Algorithms, Engineering and Computers and Programming. I also have an interest in mineral economics