Hello all,
I am trying to create a simple dll to call it from acad2010 and present a hello world message but things are getting funky...
code:
Imports Autodesk.AutoCAD.Runtime
Imports Autodesk.AutoCAD.ApplicationServices
Imports Autodesk.AutoCAD.DatabaseServices
Public Class HelloWorld
<CommandMethod("HelloWorld")> _
Public Sub MyMethod()
Application.ShowAlertDialog("Hello World from VB.NET!")
End Sub
End Class
When I try to compile (run) the class, I get the following annoying message:
Debug ger detected - Please close it down and restart!
Windows NT users:Please note that having the WinIce/SoftIce service installed means that you are running a debug ger!
What does this mean and most off all what should I do?
Note:
I have followed (to the word) what is presented in the following url:
http://www.scribd.com/doc/40736747/AutoCAD%C2%AE-NET-Basics-Part-I
Windows XP
VisualStudio 2010.
BR