Sometimes I like using a system icon for my app, just to pretty it up without having to include a #Resource or to distribute the ico file, like this ...
The icon shows in the Dialog caption bar, but not in a shortcut to the EXE nor on the TaskBar when the EXE is running. Can I use a system icon for those two purposes?
Code:
hIcon = LoadIcon(ByVal %Null, ByVal %IDI_Question) 'use a system icon for the dialog SendMessage hDlg, %WM_SetIcon, %ICON_BIG, hIcon 'use a system icon for the dialog
Comment