Toolbars selfmade

  • Hallo allerseits!

    Ich habe heute folgendes Problem (eins von vielen ;) :(
    Kann ich Toolbars selbst erstellen, die man auch abdocken und verschieben kann?
    Gibt es dafür eine UDF?

    Danke für jede kommende Antwort!

    Einen schönen Tag noch!

    MatthiasG.

    P.S.: Post 300 :rock::rock::rock:

    Einmal editiert, zuletzt von MatthiasG. (1. März 2009 um 12:30)

  • Das mit den Toolbars hab ich jetzt, es geht nur ums abdocken + Verschieben etc..

    Was ist Rebar?

  • Das hier:
    [Blockierte Grafik: http://download.lima-city.de/deepred/Bilder/709862468537155279.jpg]

    Spoiler anzeigen
    [autoit]

    #include <GuiReBar.au3>
    #include <GuiToolBar.au3>
    #include <GuiComboBox.au3>
    #include <GuiDateTimePicker.au3>
    #include <WindowsConstants.au3>
    #include <Constants.au3>
    #include <GuiConstantsEx.au3>

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

    Local Enum $idNew = 1000, $idOpen, $idSave, $idHelp

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

    $hgui = GUICreate("Rebar", 400, 396, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_SYSMENU, $WS_MAXIMIZEBOX))

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

    ; create the rebar control
    $hReBar = _GUICtrlRebar_Create($hgui, BitOR($CCS_TOP, $WS_BORDER, $RBS_VARHEIGHT, $RBS_AUTOSIZE, $RBS_BANDBORDERS))

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

    ; create a toolbar to put in the rebar
    $hToolbar = _GUICtrlToolbar_Create($hgui, BitOR($TBSTYLE_FLAT, $CCS_NORESIZE, $CCS_NOPARENTALIGN))

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

    ; Add standard system bitmaps
    Switch _GUICtrlToolbar_GetBitmapFlags($hToolbar)
    Case 0
    _GUICtrlToolbar_AddBitmap($hToolbar, 1, -1, $IDB_STD_SMALL_COLOR)
    Case 2
    _GUICtrlToolbar_AddBitmap($hToolbar, 1, -1, $IDB_STD_LARGE_COLOR)
    EndSwitch

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

    ; Add buttons
    _GUICtrlToolbar_AddButton($hToolbar, $idNew, $STD_FILENEW)
    _GUICtrlToolbar_AddButton($hToolbar, $idOpen, $STD_FILEOPEN)
    _GUICtrlToolbar_AddButton($hToolbar, $idSave, $STD_FILESAVE)
    _GUICtrlToolbar_AddButtonSep($hToolbar)
    _GUICtrlToolbar_AddButton($hToolbar, $idHelp, $STD_HELP)

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

    ; create a combobox to put in the rebar
    $hCombo = _GUICtrlComboBox_Create($hgui, "", 0, 0, 120)

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

    _GUICtrlComboBox_BeginUpdate($hCombo)
    _GUICtrlComboBox_AddDir($hCombo, @WindowsDir & "\*.exe")
    _GUICtrlComboBox_EndUpdate($hCombo)

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

    ; create a date time picker to put in the rebar
    $hDTP = _GUICtrlDTP_Create($hgui, 0, 0, 190)

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

    ; create a input box to put in the rebar
    $hInput = GUICtrlCreateInput("Input control", 0, 0, 120, 20)

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

    ; default for add is append

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

    ; add band with control
    _GUICtrlRebar_AddBand($hReBar, $hCombo, 120, 200, "Dir *.exe")

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

    ; add band with date time picker
    _GUICtrlRebar_AddBand($hReBar, $hDTP, 120)

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

    ; add band with toolbar to begining of rebar
    _GUICtrlRebar_AddToolBarBand($hReBar, $hToolbar, "", 0)

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

    ;add another control
    _GUICtrlRebar_AddBand($hReBar, GUICtrlGetHandle($hInput), 120, 200, "Name:")

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

    $btnExit = GUICtrlCreateButton("Exit", 150, 360, 100, 25)
    GUISetState(@SW_SHOW)

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

    While 1
    Switch GUIGetMsg()
    Case $GUI_EVENT_CLOSE, $btnExit
    Exit
    EndSwitch
    WEnd

    [/autoit]
  • Ist das normal?

    Der Screenshot ist schonmal super! :D

    Spoiler anzeigen


    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,10) : ERROR: illegal character in include directive
    #include &
    ~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,11) : ERROR: illegal character in include directive
    #include &l
    ~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,12) : ERROR: illegal character in include directive
    #include &lt
    ~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,13) : ERROR: illegal character in include directive
    #include &lt;
    ~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,14) : ERROR: illegal character in include directive
    #include &lt;G
    ~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,15) : ERROR: illegal character in include directive
    #include &lt;Gu
    ~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,16) : ERROR: illegal character in include directive
    #include &lt;Gui
    ~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,17) : ERROR: illegal character in include directive
    #include &lt;GuiR
    ~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,18) : ERROR: illegal character in include directive
    #include &lt;GuiRe
    ~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,19) : ERROR: illegal character in include directive
    #include &lt;GuiReB
    ~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,20) : ERROR: illegal character in include directive
    #include &lt;GuiReBa
    ~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,21) : ERROR: illegal character in include directive
    #include &lt;GuiReBar
    ~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,22) : ERROR: illegal character in include directive
    #include &lt;GuiReBar.
    ~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,23) : ERROR: illegal character in include directive
    #include &lt;GuiReBar.a
    ~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,24) : ERROR: illegal character in include directive
    #include &lt;GuiReBar.au
    ~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,25) : ERROR: illegal character in include directive
    #include &lt;GuiReBar.au3
    ~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,26) : ERROR: illegal character in include directive
    #include &lt;GuiReBar.au3&
    ~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,27) : ERROR: illegal character in include directive
    #include &lt;GuiReBar.au3&g
    ~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,28) : ERROR: illegal character in include directive
    #include &lt;GuiReBar.au3&gt
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(1,29) : ERROR: illegal character in include directive
    #include &lt;GuiReBar.au3&gt;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,10) : ERROR: illegal character in include directive
    #include &
    ~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,11) : ERROR: illegal character in include directive
    #include &l
    ~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,12) : ERROR: illegal character in include directive
    #include &lt
    ~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,13) : ERROR: illegal character in include directive
    #include &lt;
    ~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,14) : ERROR: illegal character in include directive
    #include &lt;G
    ~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,15) : ERROR: illegal character in include directive
    #include &lt;Gu
    ~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,16) : ERROR: illegal character in include directive
    #include &lt;Gui
    ~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,17) : ERROR: illegal character in include directive
    #include &lt;GuiT
    ~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,18) : ERROR: illegal character in include directive
    #include &lt;GuiTo
    ~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,19) : ERROR: illegal character in include directive
    #include &lt;GuiToo
    ~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,20) : ERROR: illegal character in include directive
    #include &lt;GuiTool
    ~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,21) : ERROR: illegal character in include directive
    #include &lt;GuiToolB
    ~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,22) : ERROR: illegal character in include directive
    #include &lt;GuiToolBa
    ~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,23) : ERROR: illegal character in include directive
    #include &lt;GuiToolBar
    ~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,24) : ERROR: illegal character in include directive
    #include &lt;GuiToolBar.
    ~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,25) : ERROR: illegal character in include directive
    #include &lt;GuiToolBar.a
    ~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,26) : ERROR: illegal character in include directive
    #include &lt;GuiToolBar.au
    ~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,27) : ERROR: illegal character in include directive
    #include &lt;GuiToolBar.au3
    ~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,28) : ERROR: illegal character in include directive
    #include &lt;GuiToolBar.au3&
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,29) : ERROR: illegal character in include directive
    #include &lt;GuiToolBar.au3&g
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,30) : ERROR: illegal character in include directive
    #include &lt;GuiToolBar.au3&gt
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(2,31) : ERROR: illegal character in include directive
    #include &lt;GuiToolBar.au3&gt;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,10) : ERROR: illegal character in include directive
    #include &
    ~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,11) : ERROR: illegal character in include directive
    #include &l
    ~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,12) : ERROR: illegal character in include directive
    #include &lt
    ~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,13) : ERROR: illegal character in include directive
    #include &lt;
    ~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,14) : ERROR: illegal character in include directive
    #include &lt;G
    ~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,15) : ERROR: illegal character in include directive
    #include &lt;Gu
    ~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,16) : ERROR: illegal character in include directive
    #include &lt;Gui
    ~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,17) : ERROR: illegal character in include directive
    #include &lt;GuiC
    ~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,18) : ERROR: illegal character in include directive
    #include &lt;GuiCo
    ~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,19) : ERROR: illegal character in include directive
    #include &lt;GuiCom
    ~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,20) : ERROR: illegal character in include directive
    #include &lt;GuiComb
    ~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,21) : ERROR: illegal character in include directive
    #include &lt;GuiCombo
    ~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,22) : ERROR: illegal character in include directive
    #include &lt;GuiComboB
    ~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,23) : ERROR: illegal character in include directive
    #include &lt;GuiComboBo
    ~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,24) : ERROR: illegal character in include directive
    #include &lt;GuiComboBox
    ~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,25) : ERROR: illegal character in include directive
    #include &lt;GuiComboBox.
    ~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,26) : ERROR: illegal character in include directive
    #include &lt;GuiComboBox.a
    ~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,27) : ERROR: illegal character in include directive
    #include &lt;GuiComboBox.au
    ~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,28) : ERROR: illegal character in include directive
    #include &lt;GuiComboBox.au3
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,29) : ERROR: illegal character in include directive
    #include &lt;GuiComboBox.au3&
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,30) : ERROR: illegal character in include directive
    #include &lt;GuiComboBox.au3&g
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,31) : ERROR: illegal character in include directive
    #include &lt;GuiComboBox.au3&gt
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(3,32) : ERROR: illegal character in include directive
    #include &lt;GuiComboBox.au3&gt;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,10) : ERROR: illegal character in include directive
    #include &
    ~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,11) : ERROR: illegal character in include directive
    #include &l
    ~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,12) : ERROR: illegal character in include directive
    #include &lt
    ~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,13) : ERROR: illegal character in include directive
    #include &lt;
    ~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,14) : ERROR: illegal character in include directive
    #include &lt;G
    ~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,15) : ERROR: illegal character in include directive
    #include &lt;Gu
    ~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,16) : ERROR: illegal character in include directive
    #include &lt;Gui
    ~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,17) : ERROR: illegal character in include directive
    #include &lt;GuiD
    ~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,18) : ERROR: illegal character in include directive
    #include &lt;GuiDa
    ~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,19) : ERROR: illegal character in include directive
    #include &lt;GuiDat
    ~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,20) : ERROR: illegal character in include directive
    #include &lt;GuiDate
    ~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,21) : ERROR: illegal character in include directive
    #include &lt;GuiDateT
    ~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,22) : ERROR: illegal character in include directive
    #include &lt;GuiDateTi
    ~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,23) : ERROR: illegal character in include directive
    #include &lt;GuiDateTim
    ~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,24) : ERROR: illegal character in include directive
    #include &lt;GuiDateTime
    ~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,25) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimeP
    ~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,26) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimePi
    ~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,27) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimePic
    ~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,28) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimePick
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,29) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimePicke
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,30) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimePicker
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,31) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimePicker.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,32) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimePicker.a
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,33) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimePicker.au
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,34) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimePicker.au3
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,35) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimePicker.au3&
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,36) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimePicker.au3&g
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,37) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimePicker.au3&gt
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(4,38) : ERROR: illegal character in include directive
    #include &lt;GuiDateTimePicker.au3&gt;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,10) : ERROR: illegal character in include directive
    #include &
    ~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,11) : ERROR: illegal character in include directive
    #include &l
    ~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,12) : ERROR: illegal character in include directive
    #include &lt
    ~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,13) : ERROR: illegal character in include directive
    #include &lt;
    ~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,14) : ERROR: illegal character in include directive
    #include &lt;W
    ~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,15) : ERROR: illegal character in include directive
    #include &lt;Wi
    ~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,16) : ERROR: illegal character in include directive
    #include &lt;Win
    ~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,17) : ERROR: illegal character in include directive
    #include &lt;Wind
    ~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,18) : ERROR: illegal character in include directive
    #include &lt;Windo
    ~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,19) : ERROR: illegal character in include directive
    #include &lt;Window
    ~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,20) : ERROR: illegal character in include directive
    #include &lt;Windows
    ~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,21) : ERROR: illegal character in include directive
    #include &lt;WindowsC
    ~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,22) : ERROR: illegal character in include directive
    #include &lt;WindowsCo
    ~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,23) : ERROR: illegal character in include directive
    #include &lt;WindowsCon
    ~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,24) : ERROR: illegal character in include directive
    #include &lt;WindowsCons
    ~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,25) : ERROR: illegal character in include directive
    #include &lt;WindowsConst
    ~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,26) : ERROR: illegal character in include directive
    #include &lt;WindowsConsta
    ~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,27) : ERROR: illegal character in include directive
    #include &lt;WindowsConstan
    ~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,28) : ERROR: illegal character in include directive
    #include &lt;WindowsConstant
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,29) : ERROR: illegal character in include directive
    #include &lt;WindowsConstants
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,30) : ERROR: illegal character in include directive
    #include &lt;WindowsConstants.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,31) : ERROR: illegal character in include directive
    #include &lt;WindowsConstants.a
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,32) : ERROR: illegal character in include directive
    #include &lt;WindowsConstants.au
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,33) : ERROR: illegal character in include directive
    #include &lt;WindowsConstants.au3
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,34) : ERROR: illegal character in include directive
    #include &lt;WindowsConstants.au3&
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,35) : ERROR: illegal character in include directive
    #include &lt;WindowsConstants.au3&g
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,36) : ERROR: illegal character in include directive
    #include &lt;WindowsConstants.au3&gt
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(5,37) : ERROR: illegal character in include directive
    #include &lt;WindowsConstants.au3&gt;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,10) : ERROR: illegal character in include directive
    #include &
    ~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,11) : ERROR: illegal character in include directive
    #include &l
    ~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,12) : ERROR: illegal character in include directive
    #include &lt
    ~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,13) : ERROR: illegal character in include directive
    #include &lt;
    ~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,14) : ERROR: illegal character in include directive
    #include &lt;C
    ~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,15) : ERROR: illegal character in include directive
    #include &lt;Co
    ~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,16) : ERROR: illegal character in include directive
    #include &lt;Con
    ~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,17) : ERROR: illegal character in include directive
    #include &lt;Cons
    ~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,18) : ERROR: illegal character in include directive
    #include &lt;Const
    ~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,19) : ERROR: illegal character in include directive
    #include &lt;Consta
    ~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,20) : ERROR: illegal character in include directive
    #include &lt;Constan
    ~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,21) : ERROR: illegal character in include directive
    #include &lt;Constant
    ~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,22) : ERROR: illegal character in include directive
    #include &lt;Constants
    ~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,23) : ERROR: illegal character in include directive
    #include &lt;Constants.
    ~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,24) : ERROR: illegal character in include directive
    #include &lt;Constants.a
    ~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,25) : ERROR: illegal character in include directive
    #include &lt;Constants.au
    ~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,26) : ERROR: illegal character in include directive
    #include &lt;Constants.au3
    ~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,27) : ERROR: illegal character in include directive
    #include &lt;Constants.au3&
    ~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,28) : ERROR: illegal character in include directive
    #include &lt;Constants.au3&g
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,29) : ERROR: illegal character in include directive
    #include &lt;Constants.au3&gt
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(6,30) : ERROR: illegal character in include directive
    #include &lt;Constants.au3&gt;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,10) : ERROR: illegal character in include directive
    #include &
    ~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,11) : ERROR: illegal character in include directive
    #include &l
    ~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,12) : ERROR: illegal character in include directive
    #include &lt
    ~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,13) : ERROR: illegal character in include directive
    #include &lt;
    ~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,14) : ERROR: illegal character in include directive
    #include &lt;G
    ~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,15) : ERROR: illegal character in include directive
    #include &lt;Gu
    ~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,16) : ERROR: illegal character in include directive
    #include &lt;Gui
    ~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,17) : ERROR: illegal character in include directive
    #include &lt;GuiC
    ~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,18) : ERROR: illegal character in include directive
    #include &lt;GuiCo
    ~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,19) : ERROR: illegal character in include directive
    #include &lt;GuiCon
    ~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,20) : ERROR: illegal character in include directive
    #include &lt;GuiCons
    ~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,21) : ERROR: illegal character in include directive
    #include &lt;GuiConst
    ~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,22) : ERROR: illegal character in include directive
    #include &lt;GuiConsta
    ~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,23) : ERROR: illegal character in include directive
    #include &lt;GuiConstan
    ~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,24) : ERROR: illegal character in include directive
    #include &lt;GuiConstant
    ~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,25) : ERROR: illegal character in include directive
    #include &lt;GuiConstants
    ~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,26) : ERROR: illegal character in include directive
    #include &lt;GuiConstantsE
    ~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,27) : ERROR: illegal character in include directive
    #include &lt;GuiConstantsEx
    ~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,28) : ERROR: illegal character in include directive
    #include &lt;GuiConstantsEx.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,29) : ERROR: illegal character in include directive
    #include &lt;GuiConstantsEx.a
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,30) : ERROR: illegal character in include directive
    #include &lt;GuiConstantsEx.au
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,31) : ERROR: illegal character in include directive
    #include &lt;GuiConstantsEx.au3
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,32) : ERROR: illegal character in include directive
    #include &lt;GuiConstantsEx.au3&
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,33) : ERROR: illegal character in include directive
    #include &lt;GuiConstantsEx.au3&g
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,34) : ERROR: illegal character in include directive
    #include &lt;GuiConstantsEx.au3&gt
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(7,35) : ERROR: illegal character in include directive
    #include &lt;GuiConstantsEx.au3&gt;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(11,67) : WARNING: $WS_MINIMIZEBOX: possibly used before declaration.
    $hgui = GUICreate("Rebar", 400, 396, -1, -1, BitOR($WS_MINIMIZEBOX,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(11,80) : WARNING: $WS_CAPTION: possibly used before declaration.
    $hgui = GUICreate("Rebar", 400, 396, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_CAPTION,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(11,91) : WARNING: $WS_POPUP: possibly used before declaration.
    $hgui = GUICreate("Rebar", 400, 396, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(11,104) : WARNING: $WS_SYSMENU: possibly used before declaration.
    $hgui = GUICreate("Rebar", 400, 396, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_SYSMENU,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(11,121) : WARNING: $WS_MAXIMIZEBOX: possibly used before declaration.
    $hgui = GUICreate("Rebar", 400, 396, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_SYSMENU, $WS_MAXIMIZEBOX)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(14,53) : WARNING: $CCS_TOP: possibly used before declaration.
    $hReBar = _GUICtrlRebar_Create($hgui, BitOR($CCS_TOP,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(14,65) : WARNING: $WS_BORDER: possibly used before declaration.
    $hReBar = _GUICtrlRebar_Create($hgui, BitOR($CCS_TOP, $WS_BORDER,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(14,81) : WARNING: $RBS_VARHEIGHT: possibly used before declaration.
    $hReBar = _GUICtrlRebar_Create($hgui, BitOR($CCS_TOP, $WS_BORDER, $RBS_VARHEIGHT,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(14,96) : WARNING: $RBS_AUTOSIZE: possibly used before declaration.
    $hReBar = _GUICtrlRebar_Create($hgui, BitOR($CCS_TOP, $WS_BORDER, $RBS_VARHEIGHT, $RBS_AUTOSIZE,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(14,114) : WARNING: $RBS_BANDBORDERS: possibly used before declaration.
    $hReBar = _GUICtrlRebar_Create($hgui, BitOR($CCS_TOP, $WS_BORDER, $RBS_VARHEIGHT, $RBS_AUTOSIZE, $RBS_BANDBORDERS)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(18,62) : WARNING: $TBSTYLE_FLAT: possibly used before declaration.
    $hToolbar = _GUICtrlToolbar_Create($hgui, BitOR($TBSTYLE_FLAT,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(18,77) : WARNING: $CCS_NORESIZE: possibly used before declaration.
    $hToolbar = _GUICtrlToolbar_Create($hgui, BitOR($TBSTYLE_FLAT, $CCS_NORESIZE,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(18,97) : WARNING: $CCS_NOPARENTALIGN: possibly used before declaration.
    $hToolbar = _GUICtrlToolbar_Create($hgui, BitOR($TBSTYLE_FLAT, $CCS_NORESIZE, $CCS_NOPARENTALIGN)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(23,73) : WARNING: $IDB_STD_SMALL_COLOR: possibly used before declaration.
    _GUICtrlToolbar_AddBitmap($hToolbar, 1, -1, $IDB_STD_SMALL_COLOR)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(25,73) : WARNING: $IDB_STD_LARGE_COLOR: possibly used before declaration.
    _GUICtrlToolbar_AddBitmap($hToolbar, 1, -1, $IDB_STD_LARGE_COLOR)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(29,58) : WARNING: $STD_FILENEW: possibly used before declaration.
    _GUICtrlToolbar_AddButton($hToolbar, $idNew, $STD_FILENEW)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(30,60) : WARNING: $STD_FILEOPEN: possibly used before declaration.
    _GUICtrlToolbar_AddButton($hToolbar, $idOpen, $STD_FILEOPEN)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(31,60) : WARNING: $STD_FILESAVE: possibly used before declaration.
    _GUICtrlToolbar_AddButton($hToolbar, $idSave, $STD_FILESAVE)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(33,56) : WARNING: $STD_HELP: possibly used before declaration.
    _GUICtrlToolbar_AddButton($hToolbar, $idHelp, $STD_HELP)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(39,61) : ERROR: syntax error
    _GUICtrlComboBox_AddDir($hCombo, @WindowsDir &amp; "\*.exe")
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(67,30) : WARNING: $GUI_EVENT_CLOSE: possibly used before declaration.
    Case $GUI_EVENT_CLOSE,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(11,67) : ERROR: $WS_MINIMIZEBOX: undeclared global variable.
    $hgui = GUICreate("Rebar", 400, 396, -1, -1, BitOR($WS_MINIMIZEBOX,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(14,115) : ERROR: _GUICtrlRebar_Create(): undefined function.
    $hReBar = _GUICtrlRebar_Create($hgui, BitOR($CCS_TOP, $WS_BORDER, $RBS_VARHEIGHT, $RBS_AUTOSIZE, $RBS_BANDBORDERS))
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(18,98) : ERROR: _GUICtrlToolbar_Create(): undefined function.
    $hToolbar = _GUICtrlToolbar_Create($hgui, BitOR($TBSTYLE_FLAT, $CCS_NORESIZE, $CCS_NOPARENTALIGN))
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(21,48) : ERROR: _GUICtrlToolbar_GetBitmapFlags(): undefined function.
    Switch _GUICtrlToolbar_GetBitmapFlags($hToolbar)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(23,73) : ERROR: _GUICtrlToolbar_AddBitmap(): undefined function.
    _GUICtrlToolbar_AddBitmap($hToolbar, 1, -1, $IDB_STD_SMALL_COLOR)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(29,58) : ERROR: _GUICtrlToolbar_AddButton(): undefined function.
    _GUICtrlToolbar_AddButton($hToolbar, $idNew, $STD_FILENEW)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(32,39) : ERROR: _GUICtrlToolbar_AddButtonSep(): undefined function.
    _GUICtrlToolbar_AddButtonSep($hToolbar)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(36,55) : ERROR: _GUICtrlComboBox_Create(): undefined function.
    $hCombo = _GUICtrlComboBox_Create($hgui, "", 0, 0, 120)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(38,37) : ERROR: _GUICtrlComboBox_BeginUpdate(): undefined function.
    _GUICtrlComboBox_BeginUpdate($hCombo)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(40,35) : ERROR: _GUICtrlComboBox_AddDir(): undefined function.
    _GUICtrlComboBox_EndUpdate($hCombo)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(43,44) : ERROR: _GUICtrlDTP_Create(): undefined function.
    $hDTP = _GUICtrlDTP_Create($hgui, 0, 0, 190)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(51,62) : ERROR: _GUICtrlRebar_AddBand(): undefined function.
    _GUICtrlRebar_AddBand($hReBar, $hCombo, 120, 200, "Dir *.exe")
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3(57,55) : ERROR: _GUICtrlRebar_AddToolBarBand(): undefined function.
    _GUICtrlRebar_AddToolBarBand($hReBar, $hToolbar, "", 0)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    C:\Users\Matthias\Desktop\Workspace\Entwicklungsumgebung\Source\test3.au3 - 183 error(s), 20 warning(s)


    Hat sich erledigt, ich benutze den FF Spoiler-Reader, der hat mist gebaut :D