hendrikhe Posted May 9, 2019 Posted May 9, 2019 (edited) Hello, I am trying to display a webpage in a GUI. Its an intranet webpage and it works fine with IE 11 , but on GUI I receive a message "There is a problem with this website’s security certificate." (see attached) With no option to continue manually, any way to fix this? #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <IE.au3> _IEErrorHandlerRegister() $IE = _IECreateEmbedded() GUICreate("Beispiel", 1000, 700) $Browser = GUICtrlCreateObj($IE, 10, 10, 960, 650) GUISetState() _IENavigate($IE, "https://intra.net") While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop EndSelect WEnd GUIDelete() Exit Edited May 9, 2019 by hendrikhe
Nine Posted May 9, 2019 Posted May 9, 2019 @hendrikhe Read VERY carefully the remarks on both _IECreateEmbedded (especially the part concerning navigate) and _IENavigate (especially the part concerning security). I believe that would solve your issues. “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy Interface Object based on Tag
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