<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Drawing Saveas is not given expected results in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3047846#M60681</link>
    <description>&lt;P&gt;&lt;BR /&gt;The error you are seeing is not because of anything code related.&lt;BR /&gt;It has to do with the drawing failing validation.&lt;BR /&gt;This is a known problem. I've seen it since 2008&lt;BR /&gt;&lt;BR /&gt;When a drawing is opened in AutoCAD it checks to see if the file was&lt;BR /&gt;last saved with an autodesk product.&lt;BR /&gt;&lt;BR /&gt;The data required for this was not supported in 2000/2004.&lt;BR /&gt;The file should open just fine if you were using AutoCAD 2004.&lt;BR /&gt;&lt;BR /&gt;However when you use a newer version then it will require the file to be recovered.&lt;BR /&gt;&lt;BR /&gt;If you notice you can resave the file as a 2010 from the 2000 file in code and there are no issues with the file.&lt;BR /&gt;&lt;BR /&gt;The only fix is to resave the file into the current version.&lt;BR /&gt;﻿&lt;/P&gt;</description>
    <pubDate>Mon, 06 Jun 2011 13:49:18 GMT</pubDate>
    <dc:creator>arcticad</dc:creator>
    <dc:date>2011-06-06T13:49:18Z</dc:date>
    <item>
      <title>Drawing Saveas is not given expected results</title>
      <link>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3043280#M60673</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Here is a code snippet which is helping me save the file in&amp;nbsp;acad 2000 format,&amp;nbsp;it is working fine,&amp;nbsp;I&amp;nbsp;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&amp;nbsp;one entity( I mean it is not exploded).&amp;nbsp;any suggestions so that I can improve on this, I want the dwg to be saved in 2000 format only, whilst I am&amp;nbsp;constructing it in 2011 through VB.Net.&lt;/P&gt;&lt;P&gt;' '&amp;nbsp;Start Code&lt;/P&gt;&lt;P&gt;Dim acDoc As Document = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument&lt;BR /&gt;Dim strDWGName As String = saveFileDia.FileName&amp;nbsp;&amp;nbsp; ' Name and path extracted from SavefileDialog box&lt;BR /&gt;acDoc.Database.SaveAs(strDWGName, True, DwgVersion.AC1015, acDoc.Database.SecurityParameters)&lt;/P&gt;&lt;P&gt;' ' Ending of the Code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is what I see in the drawing&lt;/P&gt;&lt;P&gt;** I tried changing the background color just to see that arrow has changed its color, but it is not the case&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG border="0" title="saveasError.jpg" align="center" src="http://forums.autodesk.com/t5/image/serverpage/image-id/8304i3A14A59DD7D853C2/image-size/medium?v=mpbl-1&amp;amp;px=-1" alt="saveasError.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But on the same file if I do a dxfout(), then it is coming good I dont see this condition.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2011 14:54:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3043280#M60673</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-01T14:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Saveas is not given expected results</title>
      <link>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3043312#M60674</link>
      <description>&lt;P&gt;Your problem is not the file format. but that annotative dimentioning isn't supported in 2000.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2011 15:01:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3043312#M60674</guid>
      <dc:creator>arcticad</dc:creator>
      <dc:date>2011-06-01T15:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Saveas is not given expected results</title>
      <link>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3043334#M60675</link>
      <description>&lt;P&gt;Hey that was quick,&lt;/P&gt;&lt;P&gt;is this what I need to add&lt;/P&gt;&lt;P&gt;acAliDim.Annotative= &lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;AnnotativeStates&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;.False &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;or&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;acAliDim.Annotative= &lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;AnnotativeStates&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;.Notapplicable&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;?&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;Sorry I cant run autocad out of my Company so I am asking this question since you are available, please bear with, in fact I should have trid myself.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;Thanks for the quickest help I have ever got.&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2011 15:16:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3043334#M60675</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-01T15:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Saveas is not given expected results</title>
      <link>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3043438#M60676</link>
      <description>&lt;P&gt;Hi some how I got acces to autocad,&lt;/P&gt;&lt;P&gt;Sorry to say this I am not able to do it, I tried by the methods that I had hit me,&lt;/P&gt;&lt;P&gt;it is not working,&lt;/P&gt;&lt;P&gt;please help me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2011 16:10:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3043438#M60676</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-01T16:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Saveas is not given expected results</title>
      <link>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3043482#M60677</link>
      <description>&lt;P&gt;Post your Autocad file, the original and the saved as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2011 16:40:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3043482#M60677</guid>
      <dc:creator>arcticad</dc:creator>
      <dc:date>2011-06-01T16:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Saveas is not given expected results</title>
      <link>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3043542#M60678</link>
      <description />
      <pubDate>Wed, 01 Jun 2011 17:08:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3043542#M60678</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-01T17:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Saveas is not given expected results</title>
      <link>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3046984#M60679</link>
      <description>&lt;P&gt;Hi I have posted my files,&lt;/P&gt;&lt;P&gt;any success with that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jun 2011 10:37:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3046984#M60679</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-04T10:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Saveas is not given expected results</title>
      <link>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3046986#M60680</link>
      <description>&lt;P&gt;hi please reply...&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jun 2011 10:38:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3046986#M60680</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-04T10:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Saveas is not given expected results</title>
      <link>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3047846#M60681</link>
      <description>&lt;P&gt;&lt;BR /&gt;The error you are seeing is not because of anything code related.&lt;BR /&gt;It has to do with the drawing failing validation.&lt;BR /&gt;This is a known problem. I've seen it since 2008&lt;BR /&gt;&lt;BR /&gt;When a drawing is opened in AutoCAD it checks to see if the file was&lt;BR /&gt;last saved with an autodesk product.&lt;BR /&gt;&lt;BR /&gt;The data required for this was not supported in 2000/2004.&lt;BR /&gt;The file should open just fine if you were using AutoCAD 2004.&lt;BR /&gt;&lt;BR /&gt;However when you use a newer version then it will require the file to be recovered.&lt;BR /&gt;&lt;BR /&gt;If you notice you can resave the file as a 2010 from the 2000 file in code and there are no issues with the file.&lt;BR /&gt;&lt;BR /&gt;The only fix is to resave the file into the current version.&lt;BR /&gt;﻿&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2011 13:49:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/drawing-saveas-is-not-given-expected-results/m-p/3047846#M60681</guid>
      <dc:creator>arcticad</dc:creator>
      <dc:date>2011-06-06T13:49:18Z</dc:date>
    </item>
  </channel>
</rss>

