Floppy Posted October 23, 2012 Posted October 23, 2012 (edited) I create a hidden IE window with the following code: _IECreate ( "about:blank", 0, 0) Is there a way to show the window afterwards, changing the 3rd parameter to 1? Edited October 23, 2012 by Filarono
Moderators JLogan3o13 Posted October 23, 2012 Moderators Posted October 23, 2012 Try this: #include <IE.au3> $oIE = _IECreate("about:blank", 0, 0) Sleep(1000) _IEAction($oIE, "visible") guestscripter 1 "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now