Hello,
I am trying to display a message box saying something like "Configuring... please wait." But I would like to have NO buttons for the user to click on... just an information box. All I've found were code with buttons. Is there a way to get rid of the OK button? Here's the code i have:
========================================================
Button = -1
Set WshShell = WScript.CreateObject("WScript.Shell")
Button = WshShell.Popup("Configuring... Please wait.", 30, "Configuring...", 64)
========================================================
I know the 64 code means 0+64 (0 being the OK button and 64 being the Information icon). I would like to remove the OK button.
Thanks in advance!
Dave
I am trying to display a message box saying something like "Configuring... please wait." But I would like to have NO buttons for the user to click on... just an information box. All I've found were code with buttons. Is there a way to get rid of the OK button? Here's the code i have:
========================================================
Button = -1
Set WshShell = WScript.CreateObject("WScript.Shell")
Button = WshShell.Popup("Configuring... Please wait.", 30, "Configuring...", 64)
========================================================
I know the 64 code means 0+64 (0 being the OK button and 64 being the Information icon). I would like to remove the OK button.
Thanks in advance!
Dave