Hide Table of Contents

Insert New Instance of Virtual Component (VBA)

This example shows how to:

  • create an assembly document.
  • insert a new part as a virtual component in the assembly document.
  • insert a new instance of the virtual component in the assembly document.
'-----------------------------------------------------
' Preconditions: None
'
' Postconditions:
' 1. An assembly document is created.
' 2. A virtual component is inserted in the assembly document.
' 3. A new instance of the virtual component is inserted
'    in the assembly document.
' 4. Examine the FeatureManager design tree to
'    verify steps 2 and 3.
' 5. Close the assembly document without saving the modified
'    documents.
'-----------------------------------------------------
Option Explicit
Sub main()
    Dim swApp As SldWorks.SldWorks
    Set swApp = Application.SldWorks
    
    Dim asmTemplate As String
    asmTemplate = swApp.GetUserPreferenceStringValue(swUserPreferenceStringValue_e.swDefaultTemplateAssembly)
    
    Dim swModel As SldWorks.ModelDoc2
    Set swModel = swApp.NewDocument(asmTemplate, 0, 0, 0)
    
    Dim swSelMgr As SldWorks.SelectionMgr
    Set swSelMgr = swModel.SelectionManager
    
    If swModel.Extension.SelectByID2("Front Plane", "PLANE", 0, 0, 0, False, 0, Nothing, 0) = False Then
        Debug.Print "Failed to select Front plane; check feature name."
        Exit Sub
    End If
    
    Dim swPlaneFeature As SldWorks.Feature
    Set swPlaneFeature = swSelMgr.GetSelectedObject6(1, -1)
    Dim swPlane As SldWorks.refPlane
    Set swPlane = swPlaneFeature.GetSpecificFeature2
    
    Dim swAssem As SldWorks.AssemblyDoc
    Set swAssem = swModel
    
    Dim lResult As Long
    Dim swVirtComp As SldWorks.Component2
    lResult = swAssem.InsertNewVirtualPart(swPlane, swVirtComp)
    
    If lResult = swInsertNewPartError_NoError Then
        Dim swSecondComp As SldWorks.Component2
        Set swSecondComp = swAssem.AddComponent5(swVirtComp.GetPathName, swAddComponentConfigOptions_CurrentSelectedConfig, "", False, "", 0.1, 0, 0)
    End If
    
End Sub


Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Insert New Instance of Virtual Component (VBA)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:




x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2015 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.