<?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: Error Code 1233 in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/error-code-1233/m-p/5924580#M38161</link>
    <description>&lt;P&gt;Ok, got it. This gives me what I'm looking for, thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;string ErrorText = ((Autodesk.Gis.Map.Constants.ErrorCode)exception.ErrorCode).ToString();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Nov 2015 14:40:42 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-11-25T14:40:42Z</dc:date>
    <item>
      <title>Error Code 1233</title>
      <link>https://forums.autodesk.com/t5/net-forum/error-code-1233/m-p/5880891#M38157</link>
      <description>&lt;P&gt;I am getting an error trying to set the coordinate system. The error message is... Exception of type 'Autodesk.Gis.Map.MapException' was thrown. It also has an error code of 1233 but that is all the information it gives me. Anyone know what error code 1233 is or has a list of AutoCAD error codes for future reference?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code is pretty simple and sometimes it does work so it may have something to do with locks or something. I'm very new to AutoCAD development...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Autodesk.Gis.Map.MapApplication mapApp = Autodesk.Gis.Map.HostMapApplicationServices.Application;&lt;BR /&gt;Autodesk.Gis.Map.Project.ProjectModel activeProject = mapApp.ActiveProject;&lt;BR /&gt;activeProject.Projection = CoordinateSystem;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 27 Oct 2015 20:46:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/error-code-1233/m-p/5880891#M38157</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-27T20:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 1233</title>
      <link>https://forums.autodesk.com/t5/net-forum/error-code-1233/m-p/5916048#M38158</link>
      <description>Check the Autodesk.Gis.Map.Constants.ErrorCode list of erros, that would help.&lt;BR /&gt;&lt;BR /&gt;I believe the 1233 is: DwgHasQueriedObject</description>
      <pubDate>Thu, 19 Nov 2015 16:24:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/error-code-1233/m-p/5916048#M38158</guid>
      <dc:creator>augusto.goncalves</dc:creator>
      <dc:date>2015-11-19T16:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 1233</title>
      <link>https://forums.autodesk.com/t5/net-forum/error-code-1233/m-p/5922891#M38159</link>
      <description>&lt;P&gt;Thanks for the reply. I see&amp;nbsp;&lt;SPAN&gt;Autodesk.Gis.Map.Constants.ErrorCode has the text but it doesn't have the corresponding error code number. Is there any way I can retrieve the text using the code to be able to troubleshoot and/or display the text to the user?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2015 16:19:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/error-code-1233/m-p/5922891#M38159</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-24T16:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 1233</title>
      <link>https://forums.autodesk.com/t5/net-forum/error-code-1233/m-p/5924322#M38160</link>
      <description>In fact ErrorCode is an enumeration, so the number are "implicit"</description>
      <pubDate>Wed, 25 Nov 2015 11:47:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/error-code-1233/m-p/5924322#M38160</guid>
      <dc:creator>augusto.goncalves</dc:creator>
      <dc:date>2015-11-25T11:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 1233</title>
      <link>https://forums.autodesk.com/t5/net-forum/error-code-1233/m-p/5924580#M38161</link>
      <description>&lt;P&gt;Ok, got it. This gives me what I'm looking for, thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;string ErrorText = ((Autodesk.Gis.Map.Constants.ErrorCode)exception.ErrorCode).ToString();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2015 14:40:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/error-code-1233/m-p/5924580#M38161</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-25T14:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 1233</title>
      <link>https://forums.autodesk.com/t5/net-forum/error-code-1233/m-p/10661518#M38162</link>
      <description>&lt;P&gt;Hello! Where can you find this error code???&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also have problems with activeProject.Projection = CoordinateSystem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you solve it?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Oct 2021 21:14:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/error-code-1233/m-p/10661518#M38162</guid>
      <dc:creator>danielmollerX5W2N</dc:creator>
      <dc:date>2021-10-01T21:14:32Z</dc:date>
    </item>
  </channel>
</rss>

