Public Sub CopySketch() Dim oCmdMgr As CommandManager Set oCmdMgr = ThisApplication.CommandManager Dim oSourceSketch As Sketch Set oSourceSketch = oCmdMgr.Pick(kSketchObjectFilter, "Select source sketch") Dim oTargetSketch As Sketch Set oTargetSketch = oCmdMgr.Pick(kSketchObjectFilter, "Select target sketch") Call oSourceSketch.CopyContentsTo(oTargetSketch) End Sub