Starting with AutoCAD Commands

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have just started delving into the whole AutoCAD world, I have been tasked with creating a command and just making it work from the AUTOCAD make wizard, I know this might sound as basic as it can get, but i have checked the various tutorials and also the manual that comes with the OEM installation, but I still cannot get my command to work. Here are the steps I have taken so far
- Create new Project
- Entered project information
- Loaded my .net C# command dll( only one command), I set the build type of the module to BindMngd
- Set the command in the module settings window, e.g TestCommand under commands
- Then build.
The works completes successfully without any errors but I cannot access the command from the created AutoCAD, I am am unsure what might be wrong.
I have decorated my command class with the command class attribute using the assembly directive. I have also created a void method that i decorated with the commandMethod attribute, all it does is create a predefined string on the screen.
Thanks in advance.