UnityDev
UnityDev

Reputation: 91

How can i auto load .net DLL on AutoCAD startup

I created a plugin for AutoCAD and make its .net DLL, I wanted to autoload DLL on AutoCAD startup/run. without typing netload command in command prompt.

Upvotes: 1

Views: 3763

Answers (2)

gileCAD
gileCAD

Reputation: 2493

In addition to the ways shown in the link provided by Joel Lucsy, you can use the Autoloader mechanism: https://adndevblog.typepad.com/autocad/2013/01/autodesk-autoloader-white-paper.html

Upvotes: 1

Joel Lucsy
Joel Lucsy

Reputation: 8706

You need to add registry entries to get it to load. You can find the details here https://knowledge.autodesk.com/support/autocad/troubleshooting/caas/sfdcarticles/sfdcarticles/How-to-autoload-DLLs-with-AutoCAD.html

Upvotes: 1

Related Questions