Event Crisis in VBA

#1
Hi all,

I am having a running program, which is compatible with AutoCAD VBA. Now I have to shift my code to IntelliCAD.
Previously, I was using Lisp commands and acaddocument_endcommand events. Now I am in trouble 'cause I found no method to get similar events in Intellicad vba.

If anyone may be of my help, I welcome.

Alankar

#2
alankar,

I do not know exactly what you are doing but I have used the following to check whether a command is active:

YourVariable = ActiveDocument.GetVariable("cmdactive")

Will return 0 if command not active, 1 if a command is active (cannot tell what is active though)

ssc