.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
autocad 2013 CommandMet hod assembly reference
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Microsoft Visual C# 2010 Express
Trying to create first dll in 2013,
referenced acdbmgd and acmgd (as usual, as in previous versions)
then included:
using Autodesk.AutoCAD.Runtime;
using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.Geometry;
but ...
Error in IDE (Visual C#) when entering: [CommandMethod("TEST")]
Error: CommandMethod could not be found .. are you missing a using directive or an assembly reference
???
What did I miss?
Thx.
Kevin.
Solved! Go to Solution.
Re: autocad 2013 CommandMet hod assembly reference
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
for AutoCAD 2013 you have to reference a third dll by default: AcCoreMgd.dll (to be found in the installation directory of AutoCAD).
HTH, - alfred -
Alfred NESWADBA
Ingenieur Studio HOLLAUS ... www.hollaus.at
-------------------------------------------------------------------------
Re: autocad 2013 CommandMet hod assembly reference
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thank You ...
Re: autocad 2013 CommandMet hod assembly reference
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
For Reference :
class keyThumper<T> : Lazy<T>; another Swamper
I do not endorse the social media app links below![]()
Re: autocad 2013 CommandMet hod assembly reference
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Excellent - exactly what I needed!
