VERSION 1.0 CLASS
BEGIN
  MultiUse = -1  'True
  Persistable = 0  'NotPersistable
  DataBindingBehavior = 0  'vbNone
  DataSourceBehavior  = 0  'vbNone
  MTSTransactionMode  = 0  'NotAnMTSObject
END
Attribute VB_Name = "Instance"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Option Explicit

Public Function Start(Params As Variant) As Variant
    With Form1
        If .WindowState = vbMinimized Then
            .WindowState = vbNormal
        End If
        Start = .Instance(, Params)
        .Show
    End With
End Function

Private Sub Class_Initialize()
    If Forms.Count = 0 Then
        Load Form1
    End If
    
    With Form1
        If .WindowState = vbMinimized Then
            .WindowState = vbNormal
        End If
        .Show
    End With
End Sub
