hide icon in status bar panel

  • Thread starter Thread starter alex
  • Start date Start date
A

alex

Hi,
how can I hide the icon in the status bar?
I have added an icon but only want to display it if needed.

Thanks for any advise
Alex
 
Hi Alex,

Something like:

\\\
Private busyIcon As New System.Drawing.Icon("icoBusy.ico")

Private sub X (byval iconOn as boolean)
If iconOn then
Me.statuspanel.Icon = busyIcon
else
me.statuspanel.icon=nothing
end sub
///

I hope this helps a little bit?
Cor
 
Back
Top