About A notifyicon without a form
-
Hi everybody i work on a project that need notifyicon . i create a form and put a notify control on it every thing was ok since i notice that i can not hide form from user . i don't need form att all so i want to hide it . i test visible , minimize and showintaskbar property of form but at last i noticed that form apeare in switch menu (Alt + Tab ) . can i hide form or can i use notify without a form ? please help me thanks Regards Amir Jalaly
-
Hi everybody i work on a project that need notifyicon . i create a form and put a notify control on it every thing was ok since i notice that i can not hide form from user . i don't need form att all so i want to hide it . i test visible , minimize and showintaskbar property of form but at last i noticed that form apeare in switch menu (Alt + Tab ) . can i hide form or can i use notify without a form ? please help me thanks Regards Amir Jalaly
Override the OnLoad event of the form. You can change the Opacity of the form to 0 to hide it, or change its Visible property to false. You can also change the forms ShowInTaskbar property to false. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
Override the OnLoad event of the form. You can change the Opacity of the form to 0 to hide it, or change its Visible property to false. You can also change the forms ShowInTaskbar property to false. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
thanks for your help but i do these form is hided but in alt+tab ( mean switch between forms ) icon of form is apeared have more suggestion? Regards Amir Jalaly
-
thanks for your help but i do these form is hided but in alt+tab ( mean switch between forms ) icon of form is apeared have more suggestion? Regards Amir Jalaly
-
Tanks i do all that you say and my problem is solved but i think that that article is about vb 6 . have any about .net ? Regards Amir Jalaly
-
Tanks i do all that you say and my problem is solved but i think that that article is about vb 6 . have any about .net ? Regards Amir Jalaly
Yeah, the code is written in VB6, but it demonstrates the technique and is easily converted to VB.NET. All you have to do is put a little effort into it. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome