Private Sub Form_Load()
Dim objApp As SolidEdgeFramework.Application
Dim objDoc As SolidEdgeDraft.DraftDocument
Dim objParent As SolidEdgeDraft.Sheet
Dim objCurves As SolidEdgeFrameworkSupport.Curves2d
' 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.DraftDocument")
objApp.Visible = True
Else
Set objDoc = objApp.ActiveDocument
End If
' getting the Curves2d object on the active sheet
Set objCurves = objDoc.ActiveSheet.Curves2d
' getting the Parent object of the Curves2d object
Set objParent = objCurves.Parent
' USER DISPLAY
' Release objects
Set objApp = Nothing
Set objDoc = Nothing
Set objParent = Nothing
Set objCurves = Nothing
End Sub