Click here to Skip to main content
15,885,767 members
Articles / Programming Languages / Visual Basic
Article

Simple Singleton Forms

Rate me:
Please Sign up or sign in to vote.
3.78/5 (9 votes)
15 Sep 20032 min read 122.6K   25   10
Simple way to work with singleton forms

Introduction

When I started with VB.NET a few years ago, one of the things I missed was how to deal with forms where you only want one instance open at the same time. I read a lot of articles concerning Singleton forms etc, which was all complicated and the result was not easy to use. At the end I found a very simple way to do this. Maybe too easy !

Solution

The trick is realy very simple. I just make a class with Public Shared variables with as type the Forms itself.

VB.NET
Public Class clsGlobals
#Region "Singleton Forms"
    Public Shared frmStockSelection As frmStockSelection
    Public Shared frmSettings As frmSettings
#End Region
End Class

These public shared variables will be usable eveywhere in your code. You do not create a new instance from this class. Call the variable by using the class name as shown in the next bit of code.

The code to open the Singleton Form is also very simple. The only thing to do is to check if the variable is not nothing, if not create a new instance. You have to use Focus to get your form to the foreground in case an instance was already existing but maybe hidden behind other windows.

VB.NET
If clsGlobals.frmSettings Is Nothing Then
    clsGlobals.frmSettings = New frmSettings
End If
clsGlobals.frmSettings.Show()
clsGlobals.frmSettings.Focus()

One more thing we have to do to make this work, the variable must be set back to nothing in case we close the form. This we can do in the Dispose sub of the form. After Dispose we can safely set the Form to nothing.

VB.NET
'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
    If disposing Then
        If Not (components Is Nothing) Then
            components.Dispose()
        End If
    End If
    MyBase.Dispose(disposing)
    clsGlobals.frmSettings = Nothing
End Sub

Another option is to keep the Form open in memory. This is very handy for Forms, like a little calculator for example where you don't want to start with a clear form every time.
The way to do this is to avoid the close the form and hide it. e.Cancel = True will stop the form from closing.

VB.NET
Private Sub frm_Closing(ByVal sender As Object, _
  ByVal e As System.ComponentModel.CancelEventArgs) Handles MyBase.Closing
    Me.Hide()
    e.Cancel = True
End Sub

Maybe the purist readers will not 100% agree with this approach, but for me it works very well. 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Founder Computech bvba
Belgium Belgium
I´m a freelance ICT consultant and Technical Project Manager for the last 15 years already.
Before that, I was a Software Developer for the Pharmaceutical and Petrochemical industry.
I developed a very wide knowledge in the ICT world due to my intrest.
This includes Networking (Lan, Wan), Routing Switching Bridging, etc...
Windows environment, which has no secrets for me.
Developing: To many languages to mension here.
Of course, the latest one on the list is dot net.

Comments and Discussions

 
GeneralAlso check this out (MDI forms)! Pin
Sire40414-Dec-04 8:56
Sire40414-Dec-04 8:56 
GeneralSingletons Pin
Adam Byrne22-Sep-03 23:11
Adam Byrne22-Sep-03 23:11 
GeneralRe: Singletons Pin
ashleyb18-Jan-04 11:33
ashleyb18-Jan-04 11:33 
GeneralRe: Singletons Pin
Adam Byrne19-Jan-04 6:31
Adam Byrne19-Jan-04 6:31 
Hello Ashley,

How's it going? This behaviour is caused by the chain of events that is started when you close a form. Clicking the little "X" in the top-right corner of a window causes the OnClosing event to be fired, and then when the form is closed, it is Dispose()d of. You don't really want this to happen, because since you are only ever going to have one instance of your window class (because it is a singleton), you shouldn't dispose of it until the end of the application's life.

A way to do this would be to:

  • Create your singleton form by making the constructors private and adding the following static attribute

    public static readonly MyFormClassName Instance = new MyFormClassName()

  • Override the OnClosing method of your form like this:
    <code>protected override void OnClosing(CancelEventArgs e)
    {
        e.Cancel = true;
        this.Hide();
    }</code>


    so now your form, instead of closing, just hides itself.
  • Now when your application exits, the form should be disposed of automatically, rather than when it is closed. Don't forget that when you show the window again, it will be in the same state as when it was last hidden, i.e. it's not like creating a new instance with clean, fresh, empty controls etc.

    I'm sure there's other ways to achieve this, but this is the first one that came to mind. I hope it helps.

    -adam
    GeneralRe: Singletons Pin
    ashleyb19-Jan-04 8:18
    ashleyb19-Jan-04 8:18 
    GeneralRe: Singletons Pin
    Adam Byrne20-Jan-04 0:20
    Adam Byrne20-Jan-04 0:20 
    GeneralRe: Singletons Pin
    ashleyb20-Jan-04 9:23
    ashleyb20-Jan-04 9:23 
    AnswerRe: Singletons Pin
    vdewisme6-May-09 23:11
    vdewisme6-May-09 23:11 
    GeneralRe: Singletons Pin
    Peter Verijke7-May-09 11:00
    Peter Verijke7-May-09 11:00 
    GeneralRe: Singletons Pin
    vdewisme7-May-09 21:46
    vdewisme7-May-09 21:46 

    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.