#2
bcammack,

Looks like there are no options to the SaveAs method for DXF files.




------------------
Regards
John Finlay

#3
bcammack,

Try,

Private Sub SaveAsExample()

' This example saves the drawing as a file called TESTING.DWG.

Application.ActiveDocument.SaveAs ("C:\Documents and Settings\ssc\My Documents\testing.dxf")

End Sub

It appears you can use either a dxf extension (Icad will save to dxf format, not sure what version) or dwg. Make sure you change the directory to where you want it to go.

The above worked for me using Version 5 of IntelliCAD.

ssc

#5
I guess I should have formed the question better. I know that I can specify a file extension to for the file save format to a certain degree, but via the user interface you can specify either DXF binary or DXF Ascii. Which does IntelliCAD write a DXF file out as via the VBA method?

Thanks!