Click here to Skip to main content
15,867,488 members
Articles / Programming Languages / Visual Basic

Create a System Tray Application in VB.NET

Rate me:
Please Sign up or sign in to vote.
4.94/5 (73 votes)
4 May 2010CPOL4 min read 294.8K   20.7K   124   73
Write an application that launches in the notification area.

TrayApp

Introduction

This article was prompted by a question in Quick Answers about how to write a VB.NET application that started in the tray. There were a number of examples here at CodeProject -- this article[^] by member [ICR] in particular -- but I could not find anything in VB. This article is meant to remedy that situation.

The Theory

As C# programmers know, applications start with a call to System.Windows.Forms.Application.Run. This call is normally hidden from VB.NET programmers, with the compiler supplying the required code behind the scenes. We can call this explicitly, however, which allows us to write applications that do not rely on start-up forms.

AppContext Class

The first step is to create a class that inherits from System.Windows.Forms.ApplicationContext. This provides the information needed by the Operating System to manage your application. This is also where you instantiate your NotifyIcon for the system tray, a menu to interact with the icon and any other essentials.

VB
Public Class AppContext
    Inherits ApplicationContext

#Region " Storage "
     Private WithEvents Tray As NotifyIcon
    Private WithEvents MainMenu As ContextMenuStrip
    Private WithEvents mnuDisplayForm As ToolStripMenuItem
    Private WithEvents mnuSep1 As ToolStripSeparator
    Private WithEvents mnuExit As ToolStripMenuItem

#End Region

#Region " Constructor "
     Public Sub New()
        'Initialize the menus
        mnuDisplayForm = New ToolStripMenuItem("Display form")
        mnuSep1 = New ToolStripSeparator()
        mnuExit = New ToolStripMenuItem("Exit")
        MainMenu = New ContextMenuStrip
        MainMenu.Items.AddRange(New ToolStripItem() {mnuDisplayForm, mnuSep1, mnuExit})

        'Initialize the tray
        Tray = New NotifyIcon
        Tray.Icon = My.Resources.TrayIcon
        Tray.ContextMenuStrip = MainMenu
        Tray.Text = "Formless tray application"

        'Display
        Tray.Visible = True
    End Sub

#End Region

#Region " Event handlers "
     Private Sub AppContext_ThreadExit(ByVal sender As Object, ByVal e As System.EventArgs) _
    Handles Me.ThreadExit
        'Guarantees that the icon will not linger.
        Tray.Visible = False
    End Sub

    Private Sub mnuDisplayForm_Click(ByVal sender As Object, ByVal e As System.EventArgs) _
    Handles mnuDisplayForm.Click
        ShowDialog()
    End Sub

    Private Sub mnuExit_Click(ByVal sender As Object, ByVal e As System.EventArgs) _
    Handles mnuExit.Click
        ExitApplication()
    End Sub

    Private Sub Tray_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) _
    Handles Tray.DoubleClick
        ShowDialog()
    End Sub

#End Region

End Class

This is pretty straightforward. The icon and menus are initialized in the class' Sub New, and the icon is made visible. The ThreadExit is where you clean up objects created within the class. The class also handles the Click event for mnuDisplay, which displays a dialog form, and mnuExit, which closes the application. Double clicking on the icon has the same effect as clicking mnuDisplay.

OtherMethods Module

I put the methods ExitApplication and ShowDialog in a separate code file.

VB
Friend Module OtherMethods

    Private PF As PopupForm

    Public Sub ExitApplication()
        'Perform any clean-up here
        'Then exit the application
        Application.Exit()
    End Sub

    Public Sub ShowDialog()
        If PF IsNot Nothing AndAlso Not PF.IsDisposed Then Exit Sub

        Dim CloseApp As Boolean = False

        PF = New PopupForm
        PF.ShowDialog()
        CloseApp = (PF.DialogResult = DialogResult.Abort)
        PF = Nothing

        If CloseApp Then ExitApplication
    End Sub

End Module

The module is tagged as Friend to prevent it from being exported. ExitApplication is where you would clean up any objects that are external to AppContext. Your application shuts down with the call to Application.Exit, which triggers AppContext's ThreadExit event. If you have any open forms, Application.Exit will close those down, exactly as you would expect.

Dialog.jpg

ShowDialog displays a simple dialog box that allows the user to either cancel the form or close the application. I had to do a bit of extra work to guarantee that one and only one dialog box gets displayed: clicking mnuDisplayForm will happily spawn multiple forms otherwise.

Main Method

The next step is to write the code that launches your application. In a public module, declare one of four variations of the Main method.

VB
Public Module LaunchApp

    'Version 1
    '
    Public Sub Main()
        Application.EnableVisualStyles()
        Application.Run(New AppContext)
    End Sub

    'Version 2
    '
    'Public Sub Main(ByVal cmdArgs() As String)
    'End Sub

    'Version 3
    '
    'Public Function Main() As Integer
    'End Function

    'Version 4
    '
    'Public Function Main(ByVal cmdArgs() As String) As Integer
    'End Function

End Module

In most cases, version 1 will be sufficient. If you need access to the command line, then you will want to use version 2. Versions 3 and 4 allow you to return an integer value to the Operating System when your application closes, which is useful only in rare situations.

The call to Application.Run is the key here. There are three overloads: instead of an ApplicationContext, you can also pass a Form object or no parameter. The no parameter version creates a default context which is useful for console applications. The Form version is what VB normally uses internally. You can conditionally call different versions of Application.Run, like so:

VB
Public Sub Main(ByVal cmdArgs() As String)
    Application.EnableVisualStyles()

    Dim UseTray As Boolean = False

    For Each Cmd As String In cmdArgs
        If Cmd.ToLower = "-tray" Then
            UseTray = True
            Exit For
        End If
    Next

    If UseTray Then
        Application.Run(New AppContext)
    Else
        Application.Run(New MainForm)
    End If
End Sub

With this, you can use a command line switch to decide whether your app will launch with a main form or into the notification area.

Note that the first line of code is Application.EnableVisualStyles. For reasons explained below, it is necessary to turn visual styles off when configuring your project; this is where you turn them back on. You don't have to do this, of course, but if your app has any interface elements, they will look nicer if you do.

My Project

The last step is to configure your project to use the Main method. Start by pulling up the My Project interface. On the Application tab, uncheck the "Enable application framework" box. This disables various application framework properties, including the XP visual styles (which is why we need to turn them back on). Now, go to the "Startup object" drop-down and select Sub Main. Be aware that you will select Sub Main even if you are using one of the Function Main methods.

When you run your application, the bootstrap will now call Main. Your custom context class will be launched, which sets up an interactive icon in the notification area.

Conclusion

I hope you found this article useful; if so, please vote it up. And if you find any bugs, please let me know below and I will try to get them fixed.

History

  • Version 4 - May 4, 2010 - Clarified a few points, fixed some grammar, and changed references to "tray" into either "notification area" (the official name) or "system tray" (which Microsoft says is wrong, but still uses in its own documentation). My apologies for the naming confusion.
  • Version 2, 3 - April 26, 2010 - Initial release.

License

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


Written By
United States United States
Gregory Gadow recently graduated from Central Washington University with a B.S. that combined economics and statistical analysis, and currently works for the Washington Department of Fish & Wildlife as an IT developer. He has been writing code for 30 years in more than a dozen programming languages, including Visual Basic, VB.Net, C++, C#, ASP, HTML, XML, SQL, and R.

Comments and Discussions

 
QuestionArticle of 2010, and therefore obsolete. Pin
P C Aug202131-Jul-21 23:57
P C Aug202131-Jul-21 23:57 
QuestionSystem Tray Notification after Receive data from Website via REST API Pin
Muhammad Taftazani Adi22-Sep-19 0:47
Muhammad Taftazani Adi22-Sep-19 0:47 
Questionnot impressed by this Pin
rosskiwrongun6-May-15 3:33
rosskiwrongun6-May-15 3:33 
QuestionMissing Resource Pin
stunod200212-Feb-15 5:47
stunod200212-Feb-15 5:47 
AnswerRe: Missing Resource Pin
Gregory Gadow12-Feb-15 8:48
Gregory Gadow12-Feb-15 8:48 
QuestionChanging proprieties at runtime Pin
Member 112243794-Dec-14 4:55
Member 112243794-Dec-14 4:55 
AnswerRe: Changing proprieties at runtime Pin
Gregory Gadow4-Dec-14 13:28
Gregory Gadow4-Dec-14 13:28 
QuestionTray app terminates on its own Pin
mdunlap998-Jul-14 10:21
mdunlap998-Jul-14 10:21 
QuestionAdded single-click event: Right-click triggers single-click + context menu Pin
fredtheman17-Dec-13 4:13
fredtheman17-Dec-13 4:13 
AnswerRe: Added single-click event: Right-click triggers single-click + context menu Pin
fredtheman17-Dec-13 4:21
fredtheman17-Dec-13 4:21 
GeneralRe: Added single-click event: Right-click triggers single-click + context menu Pin
Gregory Gadow17-Dec-13 4:54
Gregory Gadow17-Dec-13 4:54 
GeneralRe: Added single-click event: Right-click triggers single-click + context menu Pin
fredtheman17-Dec-13 5:04
fredtheman17-Dec-13 5:04 
AnswerRe: Added single-click event: Right-click triggers single-click + context menu Pin
Gregory Gadow17-Dec-13 4:51
Gregory Gadow17-Dec-13 4:51 
GeneralRe: Added single-click event: Right-click triggers single-click + context menu Pin
fredtheman17-Dec-13 5:03
fredtheman17-Dec-13 5:03 
GeneralRe: Added single-click event: Right-click triggers single-click + context menu Pin
Gregory Gadow17-Dec-13 5:18
Gregory Gadow17-Dec-13 5:18 
GeneralRe: Added single-click event: Right-click triggers single-click + context menu Pin
fredtheman17-Dec-13 5:29
fredtheman17-Dec-13 5:29 
GeneralRe: Added single-click event: Right-click triggers single-click + context menu Pin
fredtheman17-Dec-13 5:36
fredtheman17-Dec-13 5:36 
GeneralRe: Added single-click event: Right-click triggers single-click + context menu Pin
fredtheman17-Dec-13 5:15
fredtheman17-Dec-13 5:15 
GeneralRe: Added single-click event: Right-click triggers single-click + context menu Pin
fredtheman17-Dec-13 5:28
fredtheman17-Dec-13 5:28 
QuestionSingle Instance Application Pin
Surazal Taken8-Nov-13 3:42
Surazal Taken8-Nov-13 3:42 
AnswerRe: Single Instance Application Pin
Gregory Gadow8-Nov-13 3:53
Gregory Gadow8-Nov-13 3:53 
GeneralRe: Single Instance Application Pin
Surazal Taken8-Nov-13 4:35
Surazal Taken8-Nov-13 4:35 
QuestionNice Work Pin
$yKer24-Apr-13 17:13
$yKer24-Apr-13 17:13 
QuestionShow a balloon tip Pin
stepef11-Feb-13 23:41
stepef11-Feb-13 23:41 
AnswerRe: Show a balloon tip Pin
Gregory Gadow12-Feb-13 3:53
Gregory Gadow12-Feb-13 3:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.