I am a newbie to this site.. Would you help to know the code in progressbar in visual basic 6.0? That after 3 seconds another form will appear. I hope you could help me guys..
What is the code in using the progressbar in Visual Basic 6. 0? Thanks..
Collapse
X
-
Tags: None
-
1. You need to use a timer control.
2. Increase the value property of the progressbar at a particular time interval using timer event.
3. Set the timer interval to reach the progressbar max value after a particular time .
4. Hide the current form.
5. Open another form.Last edited by Killer42; Mar 3 '08, 02:26 AM. -
-
-
To get a smoother animation on the progress bar, just set the Max higher and the timer interval smaller, so it is incremented more times between the start and the end. The code provided will cause the bar to jump in three big leaps. (In fact, more likely the user will only see two, before it vanishes.)Comment
-
Yeah, thats rigiht . . . .
But you can change the Interval on the Tomer , The Max on the rpgressbar and change the value for ading in the valueComment
Comment