Jump to content

Open IE inside Edit Menu


DigDeep
 Share

Recommended Posts

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

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...