brauche mal eure hilfe

  • und zwar wie macht man es wenn man auf fullstream drauf klickt das die bottuns genaus so angezeigt werde wie sie in der orginalen auch angezeigt werden wenn man kein fullstream macht


    Spoiler anzeigen
    [autoit][/autoit] [autoit][/autoit] [autoit]

    #include <GUIConstants.au3>

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

    #Region ### START Koda GUI section ### Form=
    $Form1 = GUICreate("test", 1012, 455, -1, -1,0x00010000+0x00020000)
    $Button1 = GUICtrlCreateButton("Button1", 8, 8, 75, 25,0)
    $Button2 = GUICtrlCreateButton("Button2", 88, 8, 75, 25,0)
    $Button3 = GUICtrlCreateButton("Button3", 168, 8, 75, 25, 0)
    $Button4 = GUICtrlCreateButton("Button4", 248, 8, 75, 25, 0)
    $Button5 = GUICtrlCreateButton("Button5", 328, 8, 75, 25, 0)
    $Button6 = GUICtrlCreateButton("Button6", 592, 8, 75, 25, 0)
    $Combo1 = GUICtrlCreateCombo("http://", 424, 8, 161, 25)
    $Combo2 = GUICtrlCreateCombo("Suchoptionen", 696, 8, 97, 25)
    $Input1 = GUICtrlCreateInput("Input1", 800, 8, 121, 21)
    $Button7 = GUICtrlCreateButton("Button7", 928, 8, 75, 25, 0)
    $MenuItem1 = GUICtrlCreateMenu("MenuItem1")
    $MenuItem2 = GUICtrlCreateMenuItem("MenuItem2", $MenuItem1)
    GUISetState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###

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

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

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

    EndSwitch
    WEnd

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

    Einmal editiert, zuletzt von Sirocool (15. April 2009 um 13:07)

  • Ehm.
    Könntest du ein Beispiel nennen?
    Ich kann mir da gerade nicht was richtiges drunter vorstellen ;)
    Und, bitte formulier deinen Thread genauer.^^
    Wenn es geht einfach ansatzweise das Problem nennen.


    Mfg
    Benne

  • Spoiler anzeigen
    [autoit]

    #include <GUIConstants.au3>

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

    #Region ### START Koda GUI section ### Form=
    $Form1 = GUICreate("test", 1012, 455, -1, -1,0x00010000+0x00020000)
    $Button1 = GUICtrlCreateButton("Button1", 8, 8, 75, 25,0)
    GUICtrlSetResizing ( -1, 802)
    $Button2 = GUICtrlCreateButton("Button2", 88, 8, 75, 25,0)
    GUICtrlSetResizing ( -1, 802)
    $Button3 = GUICtrlCreateButton("Button3", 168, 8, 75, 25, 0)
    GUICtrlSetResizing ( -1, 802)
    $Button4 = GUICtrlCreateButton("Button4", 248, 8, 75, 25, 0)
    GUICtrlSetResizing ( -1, 802)
    $Button5 = GUICtrlCreateButton("Button5", 328, 8, 75, 25, 0)
    GUICtrlSetResizing ( -1, 802)
    $Button6 = GUICtrlCreateButton("Button6", 592, 8, 75, 25, 0)
    GUICtrlSetResizing ( -1, 802)
    $Combo1 = GUICtrlCreateCombo("http://", 424, 8, 161, 25)
    GUICtrlSetResizing ( -1, 802)
    $Combo2 = GUICtrlCreateCombo("Suchoptionen", 696, 8, 97, 25)
    GUICtrlSetResizing ( -1, 802)
    $Input1 = GUICtrlCreateInput("Input1", 800, 8, 121, 21)
    GUICtrlSetResizing ( -1, 802)
    $Button7 = GUICtrlCreateButton("Button7", 928, 8, 75, 25, 0)
    GUICtrlSetResizing ( -1, 802)
    $MenuItem1 = GUICtrlCreateMenu("MenuItem1")
    $MenuItem2 = GUICtrlCreateMenuItem("MenuItem2", $MenuItem1)
    GUISetState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###

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

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

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

    EndSwitch
    WEnd

    [/autoit]

    mfg. Jam00