#AutoIt3Wrapper_Res_Icon_Add=Awicons-Vista-Artistic-Add.ico #include $hGUI = GUICreate("Demo icon resources") $cButton = GUICtrlCreateButton("", 10, 10, 40, 40, $BS_ICON) $cLabel = GUICtrlCreateLabel("", 70, 25, 200, 20) GUISetState(@SW_SHOW, $hGUI) $rc = GUICtrlSetImage($cButton, @ScriptFullPath, 201) GUICtrlSetData($cLabel, "Icon Name: " & 201) Sleep(5000) GUIDelete($hGUI)