Jump to content

Styled gui object?


Didonet
 Share

Recommended Posts

I want to create a styled gui object. This is my script:

#include <GUIConstants.au3>
#include <IE.au3>

    _IEErrorHandlerRegister()
    $XT_oIE = _IECreateEmbedded()
    If Not IsHWnd($XT_oIE) Then
        $XT_GUI = GUICreate("asdsa", 400, 400)
        GUISetState()
    EndIf
    $XT_ActiveX = GUICtrlCreateObj($XT_oIE, 40, 40, 350, 350)
    _IENavigate($XT_oIE, "about:blank")
    _IEBodyWriteHTML($XT_oIE, "testtttt")
    
While 1
$msg = GUIGetMsg()
    If $msg = $GUI_EVENT_CLOSE Then
        Exit
    EndIf
WEnd

And i want the $XT_ActiveX to be without scroll and without border... is it possible to do an ie page in a gui without border and scroll? :P

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