Anyone know of a method to add a status bar to give the user progress on a do.. loop? the context is as follows:
‘*************CODE START**************
Private Sub btnmaximize_click()
Userform.Show
Do
Call userform.MoveNextButton_Click
‘find out how to add delay here to effect movenextclick.
Loop While userform.counter.Value < Range("AC" & 1).Value
End Sub
****************CODE END****************
Now, the value of Range("AC" & 1) is a variable which increases as I 'Navigate' the form.
Any help would be appreciated!!
Thanks!