Hi, How to create an add-in for autocad? I want to add a vba program as an add-in. Thanks in advance
Can you expand on what you mean by: Per your earlier post, you already wrote a dvb so you already have an add-in. So, what are you really asking? How to deploy it? How to automatcally load it? -- Mike ___________________________ Mike Tuersley CADalyst's CAD Clinic Rand IMAGINiT Technologies ___________________________ the trick is to realize that there is no spoon...
Thanks for the reply. I want to load few programs automatically when the autocad starts. eg. If I load the programs in another system, if I start autocad then a new menu must be added in which I call my programs.
To do that, create a dvb called "acad.dvb". Add a standard module and create a sub called "AcadStartup" and it will be automatically run at startup, just like acad.lsp does. Public Sub AcadStartup () 'do any startup processing here. 'load dvb's etc. End Sub -- ---- Ed ---- I load the programs in another system, if I start autocad then a new menu must be added in which I call my programs.
Thanks a lot. Its really working to create a toolbar. I want to know how to add a menu to the existing menu once I start acad.