Solid Edge Part Type Library
Activate Method
Description
Makes the referenced object the active one.
Syntax
Visual Basic
Public Sub Activate() 
Remarks
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 SolidEdgePart.PartDocument
    Dim objDoc1 As SolidEdgePart.PartDocument
    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.PartDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    ' getting the name of the presently active document
    sName = objDoc.Name
    ' adding a new part document
    Set objDoc1 = objApp.Documents.Add(APP_DOC, TEMPLATE)
    ' activating the earlier document
    objDoc.Activate
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objDoc1 = Nothing
End Sub
See Also

PartDocument Object  | PartDocument Members