Jump to content
Xtreme .Net Talk

Recommended Posts

Posted
when close button is pressed, stop program from ending?

how do i do that with the tray icon still showing?

Private Sub Form1_Closing(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles MyBase.Closing
       e.Cancel = True
   End Sub

Using the Cancel = true, stops the program from ending, after that you want to add any code for the systemtray icon. I believe you'll want to look at NotifyIcon class.

 

-Sean

-Sean
Posted
Just a note, remember that adding e.Cancel = true, although prevents the application from being closed, remember you to take into account when you application is running and a user shuts down their computer, because this will halt the shutdown process.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...