Как задействовать стиль окна : $WS_VSCROLL ?
Код:
#include <GuiConstantsEx.au3>
#include <WindowsConstants.au3>
$h_GUI= GUICreate('', 300, 400, -1, -1, $GUI_SS_DEFAULT_GUI+ $WS_VSCROLL)
$y=10
For $i=1 To 10
GUICtrlCreateLabel($i, 10, $y, 260, 50, 0x1000)
$y+=60
Next
GUISetState()
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd