|
-
Nov 7th, 2007, 09:56 PM
#1
Thread Starter
Member
[RESOLVED] Label not working
Hi everyone!
I'm just wondering how come the Label (lblStatus) within my UserForm1, which shows the status of my program, isn't working. Is my computer too fast or do I need to add some code to be able to show the status of my program? Many thanks!
e.g.
Code:
UserForm1.lblStatus.Caption = "Checking Actual Date Finished..."
CheckActFinish 'Subroutine
UserForm1.ProgressBar1.Value = 100 / (vali - 2)
UserForm1.lblStatus.Caption = "Checking Negative Fix Time..."
CheckNegativeFixTime 'Subroutine
UserForm1.ProgressBar1.Value = 100 / (vali - 3)
UserForm1.lblStatus.Caption = "Checking Negative RF.."
CheckNegativeRF 'Subroutine
UserForm1.ProgressBar1.Value = 100 / (vali - 4)
Cheers,
Radic
-
Nov 7th, 2007, 10:25 PM
#2
Addicted Member
Re: Label not working
I am not too Sure but you can try this
UserForm1.lblStatus.Caption = "Checking Actual Date Finished..."
DoEvents
CheckActFinish 'Subroutine
UserForm1.ProgressBar1.Value = 100 / (vali - 2)
UserForm1.lblStatus.Caption = "Checking Negative Fix Time..."
DoEvents
CheckNegativeFixTime 'Subroutine
UserForm1.ProgressBar1.Value = 100 / (vali - 3)
UserForm1.lblStatus.Caption = "Checking Negative RF.."
DoEvents
CheckNegativeRF 'Subroutine
UserForm1.ProgressBar1.Value = 100 / (vali - 4)
Do Good. Be Good. The World is yours.
-
Nov 7th, 2007, 10:33 PM
#3
Thread Starter
Member
Re: Label not working
Hey, it worked so well!!! Thanks so much!!! Cheers!!!
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
|