Hallo ihr Lieben,
eine frage ,warum wird meine HTML seite nicht richtig Dargestellt? Kann mir einer helfen.
C
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <IE.au3>
Local $hGUI = GUICreate("_IECreateEmbedded", 1920, 1080)
Local $oIE = _IECreateEmbedded()
GUICtrlCreateObj($oIE, 0, 0, 1920, 1080)
GUISetState(@SW_SHOW)
_IENavigate($oIE,@ScriptDir&"/test.html")
$oIE.document.body.scroll = "no"
While 1
Sleep(50)
$msg = GUIGetMsg()
If $msg == $GUI_EVENT_CLOSE Then ExitLoop
WEnd
Alles anzeigen