.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Debugging Dlls with VB 2005 Express

1 REPLY 1
Reply
Message 1 of 2
Anonymous
304 Views, 1 Reply

Debugging Dlls with VB 2005 Express

Hi All,

I am using VB 2005 Express. In exploring the product, I found that this
version of VB 2005 does not allow to debug Dlls. To debug my code, I thought
I would simply write a Windows application that would start AutoCAD, in
where the Dll code would be imported. But it does not work. For example the
following code will not result in adding a new command:

Imports ...
Public Class Class1
Public Sub Foo()
...
End Sub
End Class

Is conditional compilation of any hep, for example:

Imports ...
Public Class Class1

#if DLL then

Public Sub Foo()

#else

Public Foo()

#end if
...
End Sub
End Class

Or is there a better way of easing DLLs debugging with the Express edition ?

Thanks

Gilles Plante
1 REPLY 1
Message 2 of 2
Anonymous
in reply to: Anonymous

There is a IDE called Sharpdevelop you can download for free that allows you
to debug .net dll's for acad

"Gilles Plante" wrote in message
news:5103102@discussion.autodesk.com...
Hi All,

I am using VB 2005 Express. In exploring the product, I found that this
version of VB 2005 does not allow to debug Dlls. To debug my code, I thought
I would simply write a Windows application that would start AutoCAD, in
where the Dll code would be imported. But it does not work. For example the
following code will not result in adding a new command:

Imports ...
Public Class Class1
Public Sub Foo()
...
End Sub
End Class

Is conditional compilation of any hep, for example:

Imports ...
Public Class Class1

#if DLL then

Public Sub Foo()

#else

Public Foo()

#end if
...
End Sub
End Class

Or is there a better way of easing DLLs debugging with the Express edition ?

Thanks

Gilles Plante

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost