#Include <GUIButton.au3>
#Include <GUIConstantsEx.au3>
#Include <GUIImageList.au3>
GUICreate('MyGUI', 400, 400)
$Button = GUICtrlCreateButton(@CRLF & @CRLF & @CRLF & 'Button1', 10, 10, 90, 90, $BS_MULTILINE)
$hIL = _GUIImageList_Create(32, 32, 5, 1, 6)
For $x = 1 To 6
_GUIImageList_AddIcon($hIL, 'shell32.dll', 4, 1)
Next
_GUICtrlButton_SetImageList($Button, $hIL, 4, 0, 0, 0, 20)
GUISetState()
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
ExitLoop
EndSwitch
WEnd