Is there any way to display a MsgBox or a user form with display attributes only? I want it to display but not stop my macros and not expect any user input. In a macro that does several things and takes a while to run, it will show progress. I am think of something on the order of:
The function work() would show the user form or message box and have no effect on the remainder of the macro. I asked about and tried a progress bar once, but it was barely noticable.
Code:
sub work()
Pform.text = "task 1"
Pform.show
call task1()
pform.hide
Pform.text = "task 2"
Pform.show
call task2()
pform.hide
End Sub
The function work() would show the user form or message box and have no effect on the remainder of the macro. I asked about and tried a progress bar once, but it was barely noticable.