Message 1 of 5
Command not starting in debug

Not applicable
10-15-2012
11:03 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am writing a program in vb.net.
I have a command.
<CommandMethod("att2att")> _
Public Sub att2att()
Dim ed As Editor
ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor
ed.WriteMessage(String.Format("{0} commande: att2att, maintenant disponible...", System.Environment.NewLine))
Dim start As New FileSelect
start.ShowDialog()
End Sub
In the debug mode, the att2att is not recognize.
If I compile, netload and call the command, it works. Why is the command not recognize in debug mode?