Euch ist aber klar, dass es garnicht um die includes geht sondern dass es einfach keine Variable für autoscroll bei listboxen gibt?
GUI Control Styles Appendix.
Code:
Default/forced $GUI_SS_DEFAULT_LIST see GUICtrlCreateList function.
$LBS_DISABLENOSCROLL 0x1000 Shows a disabled vertical scroll bar for the list box when the box does not contain enough items to scroll. If you do not specify this style, the scroll bar is hidden when the list box does not contain enough items.
$LBS_NOINTEGRALHEIGHT 0x0100 Specifies that the list box will be exactly the size specified by the application when it created the list box.
$LBS_NOSEL 0x4000 Specifies that the user can view list box strings but cannot select them.
$LBS_NOTIFY 0x0001 Notifies the parent window when the user taps or double-taps a string in the list box.
$LBS_SORT 0x0002 Sorts strings in the list box alphabetically.
$LBS_STANDARD 0xA00003 Sorts strings in the list box alphabetically. The parent window receives an input message when the user taps or double-taps a string. The list box has borders on all sides. (LBS_NOTIFY | LBS_SORT | WS_VSCROLL | WS_BORDER)
$LBS_USETABSTOPS 0x0080 Enables a list box to recognize and expand tab characters when drawing its strings. The default tab positions are 32 dialog box units. A dialog box unit is equal to one-fourth of the current dialog box base-width unit.
Extended Style Table
Code:
$WS_EX_ACCEPTFILES 0x00000010 Allow an edit or input control within the created GUI window to receive filenames via drag and drop. The control must have also the $GUI_DROPACCEPTED state set by GUICtrlSetState.
$WS_EX_APPWINDOW 0x00040000 Forces a top-level window onto the taskbar when the window is visible.
$WS_EX_COMPOSITED 0x02000000 Windows XP or above: Paints all descendants of a window in bottom-to-top painting order using double-buffering.
$WS_EX_CLIENTEDGE 0x00000200 Specifies that a window has a border with a sunken edge.
$WS_EX_CONTEXTHELP 0x00000400 Includes a question mark in the title bar of the window. Cannot be used with the WS_MAXIMIZEBOX or WS_MINIMIZEBOX
$WS_EX_DLGMODALFRAME 0x00000001 Creates a window that has a double border; the window can, optionally, be created with a title bar by specifying the WS_CAPTION style in the dwStyle parameter.
$WS_EX_LAYOUTRTL 0x400000 Specifies that a window has a layout from right to left (RTL) instead of the standard left to right (LTR).
$WS_EX_MDICHILD 0x00000040 Create a child window that will be moved with its parent.(simulation of a MDI window maximize/minimize are not simulated).
$WS_EX_OVERLAPPEDWINDOW 0x00000300 Combines the WS_EX_CLIENTEDGE and WS_EX_WINDOWEDGE styles.
$WS_EX_STATICEDGE 0x00020000 Creates a window with a three-dimensional border style intended to be used for items that do not accept user input.
$WS_EX_TOPMOST 0x00000008 Specifies that a window created with this style should be placed above all non-topmost windows and should stay above them, even when the window is deactivated.
$WS_EX_TRANSPARENT 0x00000020 The window appears transparent because the bits of underlying sibling windows have already been painted.
$WS_EX_TOOLWINDOW 0x00000080 Creates a tool window; that is, a window intended to be used as a floating toolbar. A tool window has a title bar that is shorter than a normal title bar, and the window title is drawn using a smaller font. A tool window does not appear in the taskbar or in the dialog box that appears when the user presses ALT+TAB. If a tool window has a system menu, its icon is not displayed on the title bar. However, you can display the system menu by typing ALT+SPACE.
$WS_EX_WINDOWEDGE 0x00000100 Specifies that a window has a border with a raised edge.
$WS_EX_LAYERED 0x00080000 Creates a layered window. Note that this cannot be used for child windows.
$GUI_WS_EX_PARENTDRAG 0x00100000 Allow the label or pic control to be used as the title bar to drag the whole the parent window.
^lolkop