hey guys.....I need some help here on Progress Bar
My problem is....how do I make the progress bar to move while splash screen takes place??
All help greatly appreciate.
the folder is too big.....so I seperated them. thanks
here is part 1
Printable View
hey guys.....I need some help here on Progress Bar
My problem is....how do I make the progress bar to move while splash screen takes place??
All help greatly appreciate.
the folder is too big.....so I seperated them. thanks
here is part 1
Here is part 2
just copy and paste everthing into part 1's folder and it should load fine i guess.
thanks alot guys!
The Part1.zip file is empty.
A way to make the progress bar move, but not actually do anything apart from its display (imitate loading) is through a timer:
VB Code:
Private Sub tmrProgress_Timer() 'Initialize progress bar prgMain.Value = prgMain.Value + 1 If prgMain.Value = 100 Then Unload Me frmMain.Show End If End Sub
OMg
so sorry
here is part 1
One of my posts in this thread has an example.
For your specific code:
VB Code:
Do [b]If (Timer - dblClock) * 100 / 3 <= 100 Then ProgressBar1.Value = (Timer - dblClock) * 100 / 3 'Added Line[/b] Loop Until Timer > dblClock + 3
wow.......exact how I wanted it to be
thanks alot jemidiah
and of course..everyone as well.
MartinLiss...thanks for the link.....must have missed it when I searched last night..