Jump to content

HTML in GUI


jjump
 Share

Recommended Posts

If you mean to imbed a Browser in your GUI then please have a look at Function _IECreateEmbedded.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Did you have a look at the example in _IECreateEmbedded?

This embeds a browse robject in a GUI.

If this isn't what you want, could you please describe your problem in detail?

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Do you mean something like below?

#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <IE.au3>

$oIE = ObjCreate("Shell.Explorer.2")


$Form1 = GUICreate("", 670, 481, 193, 125)

GUISetState()
$Button1 = GUICtrlCreateButton("", 50, 40, 81, 25, $BS_PUSHLIKE)
$Button2 = GUICtrlCreateButton("", 154, 40, 89, 25, $WS_GROUP)
$Button3 = GUICtrlCreateButton("", 266, 40, 89, 25, $WS_GROUP)
$Button4 = GUICtrlCreateButton("", 370, 40, 89, 25, $WS_GROUP)
$Button5 = GUICtrlCreateButton("", 482, 40, 89, 25, $WS_GROUP)
GUICtrlCreateLabel("THIS IS A DRAFT CONCEPT ONLY .. " & @CRLF & "All content is for testing purposes only and are not tutorials" & @CRLF &"", 154, 395, 250, 60)

$GUIActiveX = GUICtrlCreateObj($oIE, 50, 71, 450, 275)

$oIE.navigate("http://google.com")



While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit


    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...