I want to make a menu with icons. What am I doing wrong in the next code: #include <GUIConstants.au3>
GUICreate("Title",500,300)
$EditMenu = GUICtrlCreateMenu('&Edit')
$PrefsItem = GUICtrlCreateMenuItem('Preferences', $EditMenu, 'shell32.dll', 21)
$FavItem = GUICtrlCreateMenuItem('Favorites', $EditMenu, 'shell32.dll', 43)
GUISetState(@SW_SHOW)
While 1
$msg = GUIGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE
Exit
EndSelect
WEndI don't really get it how to use what Holger did here: http://www.autoitscript.com/forum/index.ph...=20967&st=0