- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all,
Here is a code snippet which is helping me save the file in acad 2000 format, it is working fine, I am facing one minor problem with this, the arrowheads of the dimension are not visible, but the dimensionstyle shows that the arrow head exists, and the whole dimension is one entity( I mean it is not exploded). any suggestions so that I can improve on this, I want the dwg to be saved in 2000 format only, whilst I am constructing it in 2011 through VB.Net.
' ' Start Code
Dim acDoc As Document = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument
Dim strDWGName As String = saveFileDia.FileName ' Name and path extracted from SavefileDialog box
acDoc.Database.SaveAs(strDWGName, True, DwgVersion.AC1015, acDoc.Database.SecurityParameters)
' ' Ending of the Code
this is what I see in the drawing
** I tried changing the background color just to see that arrow has changed its color, but it is not the case
But on the same file if I do a dxfout(), then it is coming good I dont see this condition.
Please help me.
Solved! Go to Solution.