VBS popup (auto-close after n seconds)

Share your tips, tricks and favorite iMacros macros, scripts and applications for web automation in general here.
Forum rules
iMacros EOL - Attention!

The renewal maintenance has officially ended for Progress iMacros effective November 20, 2023 and all versions of iMacros are now considered EOL (End-of-Life). The iMacros products will no longer be supported by Progress (aside from customer license issues), and these forums will also no longer be moderated from the Progress side.

Thank you again for your business and support.

Sincerely,
The Progress Team
Post Reply
Hannes, Tech Support

VBS popup (auto-close after n seconds)

Post by Hannes, Tech Support » Fri Jan 22, 2010 12:20 pm

As the VBS "msgbox"es stop the script from continuing, a Wshell.Popup might be an attractive replacement:

Code: Select all

Dim Wshell
Set Wshell = CreateObject("wscript.shell")
Wshell.Popup "Message", 5, "Title"
Set Wshell = Nothing
Cf. http://msdn.microsoft.com/en-us/library ... 85%29.aspx
Post Reply