DigDeep Posted October 17, 2016 Posted October 17, 2016 Hi, I wanted to get IE window to open inside the '$Edit' instead of opening in a new Window. #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #include <EditConstants.au3> #include <IE.au3> #Region ### $Form1= GUICreate("Form1", 1914, 1005, 1912, 4) $OK = GUICtrlCreateButton("OK", 56, 264, 139, 25) $Browse = GUICtrlCreateRadio(" Browse", 56, 168, 113, 17) $Edit = GUICtrlCreateEdit("", 272, 152, 1633, 841, $ES_AUTOVSCROLL + $WS_VSCROLL) GUISetState(@SW_SHOW) #EndRegion ### While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $OK If GUICtrlRead($Browse) = 1 Then ;====>>>> Open 'https://www.google.co.in' inside the Edit Menu '$Edit' EndIf EndSwitch WEnd
Danp2 Posted October 18, 2016 Posted October 18, 2016 Check the help file for _IECreateEmbedded. Latest Webdriver UDF Release Webdriver Wiki FAQs
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