I'm using Visual Studio Express 2013 to write a formless VB.Net application that will start and remain iconized in the systray section.
I googled for infos on how to get started but didn't find much.
Would anyone have pointers to get started?
Thank you.
Edit: If you need to add support for a single left click, add the following code to the NotifyIcon1 object so that the application doesn't also open the pop-up menu:
Private Sub LeftClick(sender As Object, e As EventArgs) Handles NotifyIcon1.Click
'Work-around to prevent Windows from triggering Click then right-click
Dim MyButton As System.Windows.Forms.MouseEventArgs = e
If MyButton.Button = MouseButtons.Left Then
'Find how to put focus on msgbox
MessageBox.Show("Left click")
End If
End Sub