Hello I am writing a VBScript file. Essentially it will display some information in a explorer window. After the user clicks the X in the upper right corner to close the window, I would like the program to continue and perform more actions. But I only want the program to continue AFTER they close the window.
Here is just a bit of my code:
Set objExplorer = Wscript.CreateObject("InternetExplorer.Application")
objExplorer.Document.Body.InnerHTML = txt + "<p>Assist Complete. <i>(You may now close this window.)</i>"
So after they close this objExplorer window I want it to continue. Any ideas?
Here is just a bit of my code:
Set objExplorer = Wscript.CreateObject("InternetExplorer.Application")
objExplorer.Document.Body.InnerHTML = txt + "<p>Assist Complete. <i>(You may now close this window.)</i>"
So after they close this objExplorer window I want it to continue. Any ideas?