kleins prob. mit GUI

  • Hi, ich habe wieder mal ne Frage...

    Ich bin gerade dabei mir ein aboutfenster zu machen und habe die methode gewählt ein kleines iefenster in meine gui mit einzubinden, wo der lauftext einer *.html laufen soll.
    Es klapp auch schon zur hälfte. Was mir jetzt nicht gefällt ist dieser weiße rand um den lauftext rum. weiß jemand wie ich diesen schönheitsfehler beheben kann ?

    Hier mal der source code der *.au3

    Spoiler anzeigen
    [autoit]

    #include <GUIConstants.au3>
    #include <ie.au3>

    [/autoit] [autoit][/autoit] [autoit]

    $oIE = _IECreateEmbedded()

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    $about_form = GUICreate("About", 259, 282, 284, 136)
    GUISetCursor (3)
    GUISetBkColor(0xD8E4F8)

    [/autoit] [autoit][/autoit] [autoit]

    $ani1 = GUICtrlCreateObj ($oIE,16, 80, 217,100)
    GUICtrlCreateObj($oIE, 16, 80, 217, 100)
    GUISetState()
    _IENavigate($oIE,@ScriptDir & "\lauftext.html")
    $sql_label = GUICtrlCreateLabel("About-window", 32, 8, 190, 38)
    GUICtrlSetFont(-1, 26, 800, 0, "Electrox ")
    GUICtrlSetColor(-1, 0x808080)
    GUICtrlSetCursor (-1, 3)
    $strich_black_t = GUICtrlCreateLabel("_____________________________________", 6, 45, 226, 1)
    GUICtrlSetBkColor(-1, 0x000000)
    GUICtrlSetCursor (-1, 3)
    $strich_black_b = GUICtrlCreateLabel("_____________________________________", 6, 239, 226, 1)
    GUICtrlSetFont(-1, 1, 400, 0, "MS Sans Serif")
    GUICtrlSetBkColor(-1, 0x000000)
    GUICtrlSetCursor (-1, 3)
    $copyright_label = GUICtrlCreateLabel("© by karroffel, 2008", 40, 248, 166, 27)
    GUICtrlSetFont(-1, 16, 400, 0, "Polo Brush MF")
    GUICtrlSetCursor (-1, 3)
    GUISetState(@SW_SHOW)

    [/autoit] [autoit][/autoit] [autoit]

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

    [/autoit] [autoit][/autoit] [autoit]

    EndSwitch
    WEnd

    [/autoit]

    Hier der, der html datei

    Spoiler anzeigen

    und hier noch ein bild, damit ihr seht welchen weißen rahmen ich meine ^^
    [Blockierte Grafik: http://img146.imageshack.us/my.php?image=abboutwindowij6.jpg]

    Einmal editiert, zuletzt von karroffel (30. November 2008 um 20:16)

    • Offizieller Beitrag

    Das liegt an deiner HTML Datei. Wenn du die im IE oder FF ausführst hat des auch nen weißen Rand. Frag mich jetzt aber net warum, kein Plan von HTML.

    • Offizieller Beitrag

    Ja! Hier mal die geänderte HTML-Datei:

    Spoiler anzeigen