////////////////////////////////////////////////////// // // // Singleton Pattern så der kun kan oprettes én // // instans af Form1 formen. // // // ////////////////////////////////////////////////////// private static Form1 instance;
Public Shared Function getInstance() As Form1 If instance Is Nothing Then instance = New Form1 End If Return instance End Function
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) instance = Nothing End Sub
static void Main() { s_Mutex = new Mutex(true, "Already Running");
if (s_Mutex.WaitOne(0,false)) { Application.Run(Form1); } else MessageBox.Show("Programmet kører allerede!","Info",MessageBoxButtons.OK,MessageBoxIcon.Information); }
VB:
Private Shared s_Mutex As Mutex
Shared Sub Main() s_Mutex = New Mutex(True, "Already Running") If s_Mutex.WaitOne(0, False) Then Application.Run(Form1) Else MessageBox.Show("Programmet kører allerede!", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information) End If End Sub
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.