A bit more found I could make changes to the code in VBAMAN but could not use the Run module option had to use the command line to run. the next code snippet may help someone else we need to run the routine in model & paper space so a simple fix
Code:
If ThisDrawing.ActiveSpace = acModelSpace Then
Set Thisspace = ThisDrawing.ModelSpace
Else: Set Thisspace = ThisDrawing.PaperSpace
End If
' now just change the normal add entity commands
Set blkobj = Thisspace.InsertBlock(vertPt, CAR, 1#, 1#, 1#, blkangle)
Set arcobj = Thisspace.AddArc(vertPt, cRad, endang, startang)
Bookmarks