Icon in Notification area

  • Thread starter Thread starter Pierre Archambault
  • Start date Start date
P

Pierre Archambault

Hi everybody,

Does someone know how to put my Excel VBA application icon (2003 ~ 2007) in
the notification area?

I ask because my program hides Excel screen during execution.

Application.Visible = false

Thank you for your interest in my problem.

Pierre
 
If by "notification area" you mean the task bar, instead of changing the
visible state of the application try

Application.WindowState = xlMinimized ' xlNormal

Regards,
Peter T
 
Thanks Peter for your suggestion but the notification area is where you can
find the clock and some icons of actually running programs.

I don't know if there's another name for that zone. By the way, I really
need to hide Excel while the program is runnig.

Pierre
 
Back
Top