View Single Post
Join Date: Dec 2008
Posts: 2
Reputation: vagueante is an unknown quantity at this point 
Solved Threads: 0
vagueante vagueante is offline Offline
Newbie Poster

Re: App runing in systray, alert user with pop up form

 
0
  #4
Dec 9th, 2008
Originally Posted by Teme64 View Post
Set TopMost property of your pop up form
  1. Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
  2. '
  3. Me.TopMost = True
  4.  
  5. End Sub
After the user has somehow "reacted" to your pop up, you may set TopMost = False to allow user send your form to background.
Thanxs for your help.

that worked just fine
Reply With Quote