Update Complete Message

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
Can anyone suggest an option to display a attractive looking message
advising the user that the macro has completed that will stay on the screen
for say 5 seconds and then close?

Thx
 
userform1.Show

Application.Wait(Now + TimeValue("0:00:05"))

Unload Userform1
 
correction - I forgot to use the vbModeless argument


Userform1.show vbModeless
Application.Wait(Now + TimeValue("0:00:10"))
Unload Userform1
 
Perfect
Thanks tom

Andy

Tom Ogilvy said:
correction - I forgot to use the vbModeless argument


Userform1.show vbModeless
Application.Wait(Now + TimeValue("0:00:10"))
Unload Userform1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top