From: Pierre Archambault on
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


From: Peter T on
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

"Pierre Archambault" <pierre.archambault(a)videotron.ca> wrote in message
news:OXtgMrQ$KHA.5848(a)TK2MSFTNGP06.phx.gbl...
> 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
>
>


From: Pierre Archambault on

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




"Peter T" <peter_t(a)discussions> a �crit dans le message de groupe de
discussion : #31P$0X$KHA.5464(a)TK2MSFTNGP05.phx.gbl...
> 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
>
> "Pierre Archambault" <pierre.archambault(a)videotron.ca> wrote in message
> news:OXtgMrQ$KHA.5848(a)TK2MSFTNGP06.phx.gbl...
>> 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
>>
>>
>
>