Newsgroups : Borland : borland.public.delphi.nativeapi.win32 : 2007 Apr : D2007 change
| Subject: | D2007 change |
| Posted by: | "Russ" (nobo..@4pmsolutions.com) |
| Date: | Thu, 19 Apr 2007 17:49:56 |
This is what I use to do in the form create to keep my window off the
taskbar
style:=getwindowlong(application.handle,gwl_exstyle);
style:=style or ws_ex_toolwindow;
style:=style and not ws_ex_appwindow;
setwindowlong(application.handle,gwl_exstyle,style);
In D2007 it does not work. Anybody know why?
Russ