Autodesk ObjectARX
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
ObjectARX Wizard 2012 on VS 2010
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
I'm getting an error during the creation of a new C++ project in VS 2010 using the ARX Wizard 2012
--------------------------- Microsoft Visual Studio ---------------------------
Specified argument was out of the range of valid values.
Parameter name: value
--------------------------- OK ---------------------------
Then the project is not built. Has anyone else seen this?
Thanks,
Solved! Go to Solution.
Re: ObjectARX Wizard 2012 on VS 2010
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi
Are you creating mixed managed project? If yes, then try below step
Edit the following file like below
C:\Program Files (x86)\Autodesk\ObjectARX Wizards for AutoCAD 2012\ArxAppWiz\Scripts\1033\default.js
Line #122
Change
config.ManagedExtensions =bDotNetModule ;
into
config.ManagedExtensions =(bDotNetModule == 'True') ;
Virupaksha Aithal KM
Developer Technical Services
Autodesk Developer Network
Re: ObjectARX Wizard 2012 on VS 2010
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Yes, it was a mixed managed project. That fixed it.
Thank you!

