Click here to Skip to main content
15,913,758 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How will i continue show notify icon in system status bar after close the running exe through coding as like as MSN massenger/LAN icon???
Please help me....
Posted
Updated 6-Dec-11 22:57pm
v2

1 solution

you could do something like:

VB
Private Sub Form1_Closing(sender As System.Object, e As System.ComponentModel.CancelEventArgs) Handles Me.FormClosing
        e.Cancel = True
        Me.Visible = False
End Sub



Hope this helps :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900