<?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 how to build arx project in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/how-to-build-arx-project/m-p/2119333#M20318</link>
    <description>hi, friends and arx experts&lt;BR /&gt;
can please tell me some few steps on building on arx output.&lt;BR /&gt;
actually iam new on vc++ so i take one sample "Step02_Solved"&lt;BR /&gt;
and i installed arxwizards also. when i am build to the the application by using build-&amp;gt;build solution by nebu. the out will be created like that AsdkStep02.arx.embed.manifest. so i could not load into the autocad can u please suggest me please.&lt;BR /&gt;
&lt;BR /&gt;
venkatesh</description>
    <pubDate>Sat, 17 Nov 2007 04:54:43 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2007-11-17T04:54:43Z</dc:date>
    <item>
      <title>how to build arx project</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/how-to-build-arx-project/m-p/2119333#M20318</link>
      <description>hi, friends and arx experts&lt;BR /&gt;
can please tell me some few steps on building on arx output.&lt;BR /&gt;
actually iam new on vc++ so i take one sample "Step02_Solved"&lt;BR /&gt;
and i installed arxwizards also. when i am build to the the application by using build-&amp;gt;build solution by nebu. the out will be created like that AsdkStep02.arx.embed.manifest. so i could not load into the autocad can u please suggest me please.&lt;BR /&gt;
&lt;BR /&gt;
venkatesh</description>
      <pubDate>Sat, 17 Nov 2007 04:54:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/how-to-build-arx-project/m-p/2119333#M20318</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-17T04:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to build arx project</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/how-to-build-arx-project/m-p/2119334#M20319</link>
      <description>How are you loading it into AutoCAD?&lt;BR /&gt;
If the project builds ok:&lt;BR /&gt;
1. Start AutoCAD&lt;BR /&gt;
2. Start the 'ARX' command and type 'L' for load.&lt;BR /&gt;
3. Browse to the folder that contains the *.arx file.&lt;BR /&gt;
4. Type the name of the command that you defined.&lt;BR /&gt;
&lt;BR /&gt;
The arx file should be in a sub folder within your project that is called either 'debug' or 'release' and it should have the file extension '.arx'. If not then most likely the project did not build correctly.</description>
      <pubDate>Sat, 17 Nov 2007 10:55:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/how-to-build-arx-project/m-p/2119334#M20319</guid>
      <dc:creator>cadMeUp</dc:creator>
      <dc:date>2007-11-17T10:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to build arx project</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/how-to-build-arx-project/m-p/2119335#M20320</link>
      <description>Hi,&lt;BR /&gt;
I'm a new to arx also. I just start to ARX and VC for a just month and I also faced with this problem. Here is my exprience of the first compilation:&lt;BR /&gt;
1. Righ click on your project in the VS Solution explore and click property.&lt;BR /&gt;
2. Go to Configuration properties -&amp;gt; C/C++. Make sure that Addition Included Directory is include "C:\OBJECTARX\inc" (assumed that you install OARX in  C:\OBJECTARX\ folder.&lt;BR /&gt;
3. Go to Configuration properties -&amp;gt; C/C++. Make sure that Additional Library Directory is include "C:\OBJECTARX\lib"&lt;BR /&gt;
4.Save these configuration and compile the project.&lt;BR /&gt;
5. Depend on your type of output (debug and release) the output should be in one of these folder.&lt;BR /&gt;
Load and try.&lt;BR /&gt;
Good luck.&lt;BR /&gt;
&lt;BR /&gt;
------&lt;BR /&gt;
Kieu Minh Tuan&lt;BR /&gt;
DCL&amp;amp;LSP Generator&lt;BR /&gt;
http://dclgenerator.co.nr</description>
      <pubDate>Tue, 20 Nov 2007 07:40:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/how-to-build-arx-project/m-p/2119335#M20320</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-20T07:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to build arx project</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/how-to-build-arx-project/m-p/2119336#M20321</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
Manifest is a bad thing which have to be avoided.&lt;BR /&gt;
So what you have to do is to get rid of everything that has do with manifest.&lt;BR /&gt;
In project properties:&lt;BR /&gt;
Set Configuration Properties-&amp;gt;Linker-&amp;gt;Manifest File-&amp;gt;Generate Manifest to no.&lt;BR /&gt;
Set Configuration Properties-&amp;gt;Manifest Tool-&amp;gt;Embed Manifest to no.&lt;BR /&gt;
&lt;BR /&gt;
Hope this helps.&lt;BR /&gt;
&lt;BR /&gt;
Kind regards&lt;BR /&gt;
Johannes P. Hansen</description>
      <pubDate>Tue, 20 Nov 2007 08:03:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/how-to-build-arx-project/m-p/2119336#M20321</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-20T08:03:00Z</dc:date>
    </item>
  </channel>
</rss>

