HighlanderSword Posted September 4, 2012 Posted September 4, 2012 (edited) Hello, Im attempting to hide all of the Ie screens until Im ready to display the screens to the users. I use the code snippet below <p> $oIE = _IECreate (" Edited September 5, 2012 by Valik
bogQ Posted September 4, 2012 Posted September 4, 2012 TSE Pro + Process Hacker on bank account trying to hide logon win. what are you trying to do? TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related) There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.
HighlanderSword Posted September 4, 2012 Author Posted September 4, 2012 We are automating tasks for end users and nee the ability to set this up so the users cant see the screens for the logon as they try to chnage things and it wont work if the exact logon credentials are not passwed to the application, the abblication is passing the details for the logon , its just the user intgeractionwe need to avoid until the logon is complete
bogQ Posted September 4, 2012 Posted September 4, 2012 you mean you need autoit to pass logon credentials to that win while its hidden untill he (the user) dont tupe in correct data and the hidden wins after that popup? TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related) There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.
HighlanderSword Posted September 4, 2012 Author Posted September 4, 2012 Hello ,Yes we want to hide the windows until the user is logged in .
kaotkbliss Posted September 4, 2012 Posted September 4, 2012 (edited) if you embed the IE into a gui then show/hide the gui when needed $ie = _IECreateEmbedded() $ie_gui = GUICreate("Your GUI",910,713,-1,-1,$WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_CLIPSIBLINGS + $WS_CLIPCHILDREN);Adjust size as needed $GUIActiveX = GUICtrlCreateObj($ie,1,14,909,699) GUISetState(@SW_SHOW or @SW_HIDE) _IENavigate ($ie,website_url) Edited September 4, 2012 by kaotkbliss 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy!
Bert Posted September 4, 2012 Posted September 4, 2012 What you may want to do seeing how you work for BofA is use active directory to set the access then the users will not need to login. Second I would cut out items on your screenshot that are not needed. You are asking for a security issue with your information security people if they see you doing this. Just by looking at your screenshot I was able to gather several pieces of information about your internal network environment that a hacker would like to know. The Vollatran project My blog: http://www.vollysinterestingshit.com/
DaleHohm Posted September 4, 2012 Posted September 4, 2012 The GUI won't control thr win32 password prompt. Also consider covering everything with a splash screen until you are ready to reveal. Dale Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead? Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble
kaotkbliss Posted September 4, 2012 Posted September 4, 2012 The GUI won't control thr win32 password prompt. Also consider covering everything with a splash screen until you are ready to reveal.DaleFrom what I gathered, he wanted to hide the "Navigation Cancelled" window and leave the login visible until after they logged in and the webpage was refreshed. 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy!
Valik Posted September 5, 2012 Posted September 5, 2012 Image removed per the user's request. Thread locked because I just don't like this one.
Recommended Posts