Hide, Minimize and into Notifytray

Basseman

Member
Licensed User
Hi, put this together for myself but thought maybe someone else would like it and learn from it..

Please comment..


:sign0060:

Any ideas why i cant use optimized compilation ???
 

Attachments

  • hide&notify.zip
    12.5 KB · Views: 371

agraham

Expert
Licensed User
Longtime User
For some reason NotifyIcon.New1 needs a Control name as a parameter, I don't know why because it doesn't use it internally :confused:, that's why it works in the IDE without it but the fussy optimising compiler complains.

ni.New1("Form1") ' New Notifyicon

Have you checked out my ControlsExDesktop library. It has a somewhat more powerful version of NotifyIcon with the ability for the application to define the icon and a context menu. It's got lots of other desktop stuff as well.
 

Basseman

Member
Licensed User
Thanx alot agraham, i will check out your library.



For some reason NotifyIcon.New1 needs a Control name as a parameter, I don't know why because it doesn't use it internally :confused:, that's why it works in the IDE without it but the fussy optimising compiler complains.

ni.New1("Form1") ' New Notifyicon

Have you checked out my ControlsExDesktop library. It has a somewhat more powerful version of NotifyIcon with the ability for the application to define the icon and a context menu. It's got lots of other desktop stuff as well.
 
Top