T
TFriis
Hi folk.
I've created this custom status bar, but it does not update proper
when the macro is running - any ideas:
code:
The userform (frmstatus) is height: 48,75 and width: 216,75
inside that is two labels, one lblTotal with height: 18 and width: 200
and another lblStatus with height: 18 and width: 10 (and a different
color and placed on top of lblTotal).
When the makro is played, the entire form just turnes white
Any ideas?
I've created this custom status bar, but it does not update proper
when the macro is running - any ideas:
code:
frmStatus.lblStatus.Width = 0
frmStatus.Show
for i = 1 to 100 'Slides.count
dblstep = i / 100 'slides.count
frmStatus.lblStatus.Width = dblstep * frmStatus.lblTotal.Width
'Random Code Here.
next i
frmStatus.Hide
The userform (frmstatus) is height: 48,75 and width: 216,75
inside that is two labels, one lblTotal with height: 18 and width: 200
and another lblStatus with height: 18 and width: 10 (and a different
color and placed on top of lblTotal).
When the makro is played, the entire form just turnes white
Any ideas?