RE: Alt+Tab icon in windows
- Posted by Brian Broker <bkb at cnw.com> Jan 04, 2002
- 420 views
Jasper, Using Win32Lib and my own icon when binding, I put the following in my 'onOpen' routine. atom hicon, exw exw = allocate_string("exw") hicon = w32Func( xLoadIcon, {instance(), exw} ) free(exw) if sendMessage( CardWin, WM_SETICON, 1, hicon ) then end if This puts my bound icon in my window, and shows it when I ALT-TAB. -- Brian jaspers_post at hotmail.com wrote: > Hi everyone, > > I've got an exe-file (made with bindw) with my own icon. This works > fine. The installer I use recognises this icon for example. However when > > I use Alt+Tab in windows to switch between programs Euphoria's standard > icon is shown instead of my own. Has anayone else encountered this > problem and does anyone has a solution? > > Bye, > > Jasper. > >