GUIConstantsEx.au3

  • Ja schon, nur bei mir funktionieren z.b $ES_CENTER nicht!
    Es kommt immer die Fehlermeldung: "Error: Variable used without declared"
    Meine GuiConstantsEx.au3 da fehlt z.b. $ES_CENTER:

    Spoiler anzeigen
    [autoit]

    #include-once

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

    ; ------------------------------------------------------------------------------
    ;
    ; AutoIt Version: 3.2
    ; Description: Constants to be used in GUI applications.
    ;
    ; ------------------------------------------------------------------------------

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

    ; Events and messages
    Global Const $GUI_EVENT_CLOSE = -3
    Global Const $GUI_EVENT_MINIMIZE = -4
    Global Const $GUI_EVENT_RESTORE = -5
    Global Const $GUI_EVENT_MAXIMIZE = -6
    Global Const $GUI_EVENT_PRIMARYDOWN = -7
    Global Const $GUI_EVENT_PRIMARYUP = -8
    Global Const $GUI_EVENT_SECONDARYDOWN = -9
    Global Const $GUI_EVENT_SECONDARYUP = -10
    Global Const $GUI_EVENT_MOUSEMOVE = -11
    Global Const $GUI_EVENT_RESIZED = -12
    Global Const $GUI_EVENT_DROPPED = -13

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

    Global Const $GUI_RUNDEFMSG = 'GUI_RUNDEFMSG'

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

    ; State
    Global Const $GUI_AVISTOP = 0
    Global Const $GUI_AVISTART = 1
    Global Const $GUI_AVICLOSE = 2

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

    Global Const $GUI_CHECKED = 1
    Global Const $GUI_INDETERMINATE = 2
    Global Const $GUI_UNCHECKED = 4

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

    Global Const $GUI_DROPACCEPTED = 8
    Global Const $GUI_NODROPACCEPTED = 4096
    Global Const $GUI_ACCEPTFILES = $GUI_DROPACCEPTED ; to be suppressed

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

    Global Const $GUI_SHOW = 16
    Global Const $GUI_HIDE = 32
    Global Const $GUI_ENABLE = 64
    Global Const $GUI_DISABLE = 128

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

    Global Const $GUI_FOCUS = 256
    Global Const $GUI_NOFOCUS = 8192
    Global Const $GUI_DEFBUTTON = 512

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

    Global Const $GUI_EXPAND = 1024
    Global Const $GUI_ONTOP = 2048

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

    ; Font
    Global Const $GUI_FONTITALIC = 2
    Global Const $GUI_FONTUNDER = 4
    Global Const $GUI_FONTSTRIKE = 8

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

    ; Resizing
    Global Const $GUI_DOCKAUTO = 0x0001
    Global Const $GUI_DOCKLEFT = 0x0002
    Global Const $GUI_DOCKRIGHT = 0x0004
    Global Const $GUI_DOCKHCENTER = 0x0008
    Global Const $GUI_DOCKTOP = 0x0020
    Global Const $GUI_DOCKBOTTOM = 0x0040
    Global Const $GUI_DOCKVCENTER = 0x0080
    Global Const $GUI_DOCKWIDTH = 0x0100
    Global Const $GUI_DOCKHEIGHT = 0x0200

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

    Global Const $GUI_DOCKSIZE = 0x0300 ; width+height
    Global Const $GUI_DOCKMENUBAR = 0x0220 ; top+height
    Global Const $GUI_DOCKSTATEBAR = 0x0240 ; bottom+height
    Global Const $GUI_DOCKALL = 0x0322 ; left+top+width+height
    Global Const $GUI_DOCKBORDERS = 0x0066 ; left+top+right+bottom

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

    ; Graphic
    Global Const $GUI_GR_CLOSE = 1
    Global Const $GUI_GR_LINE = 2
    Global Const $GUI_GR_BEZIER = 4
    Global Const $GUI_GR_MOVE = 6
    Global Const $GUI_GR_COLOR = 8
    Global Const $GUI_GR_RECT = 10
    Global Const $GUI_GR_ELLIPSE = 12
    Global Const $GUI_GR_PIE = 14
    Global Const $GUI_GR_DOT = 16
    Global Const $GUI_GR_PIXEL = 18
    Global Const $GUI_GR_HINT = 20
    Global Const $GUI_GR_REFRESH = 22
    Global Const $GUI_GR_PENSIZE = 24
    Global Const $GUI_GR_NOBKCOLOR = -2

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

    ; Background color special flags
    Global Const $GUI_BKCOLOR_DEFAULT = -1
    Global Const $GUI_BKCOLOR_TRANSPARENT = -2
    Global Const $GUI_BKCOLOR_LV_ALTERNATE = 0xFE000000

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

    ; Other
    Global Const $GUI_WS_EX_PARENTDRAG = 0x00100000

    [/autoit]


    Kann mir mal jemand seine GuiConstantsEx.au3 posten? ?(