up vote 1 down vote favorite
share [g+] share [fb]

How to know if a Application is visible on taskbar?

I am using Delphi on windows.

link|improve this question

54% accept rate
I think you gave too less information. An VCL Delphi application always has a taskbar button, so the answer would be "You know because it is always there". – Andreas Hausladen Dec 7 '09 at 20:44
I removed the taskbar button of some applications – Leo Dec 7 '09 at 21:03
Please document what you mean by "removed the taskbar" button. Provide the code or property to do this. – M Schenkel Dec 7 '09 at 21:50
By "a(n) application" do you mean YOUR application, another application that's for sure running but may or may not be on the taskbar? Do you mean how to tell if another person's application is running at all and the way you're used to referring to it is that's on the taskbar? There's lots of ways to interpret this. – BarrettJ Dec 7 '09 at 22:17
feedback

2 Answers

up vote 2 down vote accepted

I didn't try :

{Wnd = your app. handle}

    if IsWindowVisible(Wnd) 
       and
       ( (GetWindowLong(Wnd, GWL_HWNDPARENT) = 0) or (HWND(GetWindowLong(Wnd, GWL_HWNDPARENT)) = GetDesktopWindow) ) 
       and
       ((GetWindowLong(Wnd, GWL_EXSTYLE) and WS_EX_TOOLWINDOW) = 0)
    then 
      // your application is visible on taskbar
link|improve this answer
perfect, thanks Sima – Leo Dec 12 '09 at 15:34
feedback

Did you play with

Application.MainFormOnTaskbar := False;

and

Application.MainForm.Visible := False;
Application.ShowMainForm := False;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.