Solid Edge Assembly Type Library
Activate Method
Description
Makes the referenced object the active one.
Syntax
Visual Basic
Public Sub Activate() 
Remarks
This method makes the document the active document. The method activates the environment that is associated with the document and places the associated windows on top of all other windows.
Example
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
See Also

AssemblyDocument Object  | AssemblyDocument Members