RE: Alt+Tab icon in windows+Message box bug
- Posted by jaspers_post at hotmail.com Jan 08, 2002
- 361 views
Hi Brian, Euman and others, atom hicon, exw exw = allocate_string("exw") hicon = w32Func( xLoadIcon, {instance(), exw} ) free(exw) if sendMessage( CardWin, WM_SETICON, 1, hicon ) then end if Works fine for the Alt+Tab icon! Thanks. My program begins to look professional About the message box bug: a seperate Instance for each Dialog or message box (Euman) makes sense to me. I now know why my workaround didn't work, the main window was not minimised but a window of another application (my editor) got focus. So setFocus(id) will work as a workaround. Another problem solved. Thanks again. Bye, Jasper.