|
-
Nov 24th, 2007, 06:57 AM
#1
Thread Starter
Frenzied Member
start up program with Progressbar
I would like to know how to use progressbar base on the time it taken to start up the program
I use progressbar and timer but I not involved the time taken to to start up the program
Private Sub Timer1_Timer()
ProgressBar1.Value = ProgressBar1.Value + 5
If ProgressBar1.Value = 100 Then
Timer1.Enabled = False
Unload Me
frmDateChecker.Show
frmMenu.Command9.Enabled = False
frmMenu.Command9.Visible = False
End If
End Sub
Last edited by matrik02; Nov 24th, 2007 at 07:24 AM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|