Newbie

Newbie

Anonymous
Not applicable
871 Views
3 Replies
Message 1 of 4

Newbie

Anonymous
Not applicable
I've been using VBA and VB in 2000i for a few years, but never used DOTNET.
From what I understand, ACAD 2005 uses DOTNET, but I cant tell any
difference in the visual basic interface.

What am I missing?

Edward
0 Likes
872 Views
3 Replies
Replies (3)
Message 2 of 4

Mikko
Advocate
Advocate
If your using VBA or VB6 your coding style doesn't change a bit. With VB.NET you still can code the same as always but you have available now an API written for .NET which changes your coding style and has a slight learning curve. If your still using 2004 or older, you can't learn anything new. If your using 2005 or newer you can start learning the new .NET API by firing up a new Visual Studio windows application or class library and setting a reference to the acdbmgd.dll and acmgd.dll. You still have the COM Interop to fall back on if your in a time crunch. Speaking from my own experience, there is not a whole lot of difference when you get right down to it.

Download the provided examples http://discussion.autodesk.com/thread.jspa?threadID=406914 and get your feet wet, ask alot of questions.
0 Likes
Message 3 of 4

Anonymous
Not applicable
Is DOTNET only something that can be done from Visual Studio, or can it also
be used like Visual Basic for Applications from within the AutoCAD
interface?

Edward


wrote in message news:4868979@discussion.autodesk.com...
If your using VBA or VB6 your coding style doesn't change a bit. With
VB.NET you still can code the same as always but you have available now an
API written for .NET which changes your coding style and has a slight
learning curve. If your still using 2004 or older, you can't learn anything
new. If your using 2005 or newer you can start learning the new .NET API by
firing up a new Visual Studio windows application or class library and
setting a reference to the acdbmgd.dll and acmgd.dll. You still have the
COM Interop to fall back on if your in a time crunch. Speaking from my own
experience, there is not a whole lot of difference when you get right down
to it.

Download the provided examples
http://discussion.autodesk.com/thread.jspa?threadID=406914 and get your feet
wet, ask alot of questions.
0 Likes
Message 4 of 4

Mikko
Advocate
Advocate
Visual Studio is the easiest software to use. I don't use VBA and I don't think it will support the .NET framework anytime soon for a whole lot of reasons. You need to create a class library and compile a dll and do the NetLoad thing for it to work within the AutoCAD interface.
0 Likes