SetParent / Remove from child window
-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By Herb191
I am sure this is something simple but I can’t get this to display without a white box at the top of the GUI.
#include <GUIConstantsEx.au3> #include <IE.au3> #include <WinAPI.au3> $oIE = _IECreate("about:blank", 0, 0) $IE_window_child = _IEPropertyGet($oIE, "hwnd") $Form1 = GUICreate("Test", @DesktopWidth, @DesktopHeight, 0, 0) _WinAPI_SetParent($IE_window_child, $Form1) GUISetState(@SW_SHOW) Do Until GUIGetMsg() = $GUI_EVENT_CLOSE
-
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