Author Topic: Strong names and AutoCAD 2008  (Read 2739 times)

0 Members and 1 Guest are viewing this topic.

simor

  • Guest
Strong names and AutoCAD 2008
« on: October 06, 2008, 05:08:56 AM »
AutoCAD's disc-groups are down so I'm having harder times finding answers to my noob questions..

I was wondering if it's possible to use strong names with ObjectARX? I'm using C# .NET 05 and AutoCAD 2008. Two references don't seem to have strong names, namely: acdbmgd and acmgd so I can't compile my project. Is there any way to overcome this or not?

/me ObjectARX noob, go easy on me!

Glenn R

  • Guest
Re: Strong names and AutoCAD 2008
« Reply #1 on: October 06, 2008, 10:59:30 AM »
No, not to my knowledge.

Draftek

  • Guest
Re: Strong names and AutoCAD 2008
« Reply #2 on: October 06, 2008, 11:14:36 AM »
The only thing I could think of is late binding with no reference to the type libraries. I have a large app which does minimal work inside autocad where I used this technique.

I personally do not recommend doing that but I believe Keith writes all his AutoCAD code this way.

simor

  • Guest
Re: Strong names and AutoCAD 2008
« Reply #3 on: October 10, 2008, 06:35:56 AM »
Alright, thanks for the replies!