Re: Alt+Tab icon in windows+Message box bug
- Posted by Euman <euman at bellsouth.net> Jan 08, 2002
- 390 views
Here is a pretty good description of the how and why of subclassing. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwui/html/msdn_subclas3.asp Euman euman at bellsouth.net ----- Original Message ----- From: <jaspers_post at hotmail.com> > 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.