CPB Mailing List
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Re[3]: Taskbar
Yes, So if set up something like
void __fastcall TForm1::WndProc(Messages::TMessage &Message)
{
switch(Message.Msg)
{
case WM_SYSCOMMAND :
if(Msg.uCmdType == SC_MINIMIZE ) // (or SC_ICON)
you can use Howard's method here to take the app
out of the TaskBar
or if you do not like the switch thing
if( ( Message.Msg == WM_SYSCOMMAND ) &&
(Message.WParam == == SC_MINIMIZE ) // (or
SC_ICON) ) )
HIDE THE APP HERE
Hope that Helps... I should have been more clear from the start
Mike Harris
W Komornicki's Home Page |
Main Index |
Thread Index