Private Sub Form_Load()
    Dim objApp As solidedgeFramework.Application
    Dim objDoc As solidedgeAssembly.AssemblyDocument
    Dim objDoc1 As solidedgeAssembly.AssemblyDocument
    Dim sName As String
    ' Report errors
    Const PI = 3.14159265358979
    ' Create/get the application with specific settings
    On Error Resume Next
    Set objApp = GetObject(, "SolidEdge.Application")
    If Err Then
        Err.Clear
        Set objApp = CreateObject("SolidEdge.Application")
        Set objDoc = objApp.Documents.Add("SolidEdge.AssemblyDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    ' Getting the name of the active document
    sName = objDoc.Name
    ' Adding a new Assembly document
    Set objDoc1 = objApp.Documents.Add(APP_DOC, TEMPLATE)
    ' Activating the earlier document
    Call objDoc.Activate
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objDoc1 = Nothing
End Sub