Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Imports System.Threading
Module modMain
Public mtx As Mutex
Public Sub Main()
Dim bCreated As Boolean
mtx = New Mutex(False, "SingleInstanceApp", bCreated)
If bCreated = True Then
Application.Run(New frmMain)
Else
End
End If
End Sub
End Module
Public Class Startup
Public Shared Sub Main()
Dim splash As New Splash
splash.Show()
Dim loResult As DialogResult
Dim lo As New LogOn
splash.Label1.Text = "Logging on ..."
splash.Refresh()
Threading.Thread.CurrentThread.Sleep(1000)
lo.ShowDialog()
loResult = lo.DialogResult
lo.Dispose()
If loResult = DialogResult.OK Then
splash.Label1.Text = "Log On successful"
Else
splash.Label1.Text = "Log on failed"
End If
splash.Refresh()
Threading.Thread.CurrentThread.Sleep(1000)
splash.Dispose()
Application.Run(New ClassLibrary1.Form1)
End Sub
End Class
Private Function PrevInstance() As Boolean
If Diagnostics.Process.GetProcessesByName(Diagnostics.Process.GetCurrentProcess.ProcessName).Length > 1 Then
Return True
Else
Return False
End If
End Function
Public Sub Main()
'Prevent more than one instance from running at a time
Dim OtherMe As Integer
Dim MeCount As Integer = 0
For Each p As Process In GetProcesses()
If p.ProcessName = ApplicationName Then
MeCount += 1
If Not (p Is GetCurrentProcess()) Then
OtherMe = p.Id
End If
End If
Next
If MeCount = 1 Then
Options = New OptionsClass
Dim HasCommandLine As Boolean
Dim CommandLineOK As Boolean = EvalCommandLine(HasCommandLine)
If CommandLineOK Then
If HasCommandLine Then
If Options.SaveSettings(True) Then
ShowMessage _
("Re-start and logon as the default user", MB.MsgBtns.OK, MB.MsgIcon.Info)
Else
ShowMessage _
("Unable to create options file", MB.MsgBtns.OK, MB.MsgIcon.Error)
End If
Else
Dim ok As Boolean
Dim formSplash As New SplashScreenForm
formSplash.Show()
Application.DoEvents()
ok = Options.LoadSettings()
If ok Then
ok = Logon()
Else
ShowMessage _
("Unable to properly initialise.", MB.MsgBtns.OK, MB.MsgIcon.Error)
End If
formSplash.Close()
If ok Then Application.Run(New MainForm)
End If
Else
ShowMessage _
("Invalid startup parameter(s)", MB.MsgBtns.OK, MB.MsgIcon.Error)
End If
Else
ShowMessage _
("You can only run me once at a time", MB.MsgBtns.OK, MB.MsgIcon.Error)
AppActivate(OtherMe)
End If
Application.Exit()
End Sub