BeginLISP .net Equivalent

BeginLISP .net Equivalent

Anonymous
Not applicable
612 Views
2 Replies
Message 1 of 3

BeginLISP .net Equivalent

Anonymous
Not applicable

I would like to monitor users to get an idea as to which LISP routines are being used in ACAD for cleanup and utilization purposes.  It appears that VBA had a beginlisp event that could be used to handle this, but I can't seem to find any documentation on a similar event or its inclusion in vb.net.  Has anyone found an event that could be used to accomplish this or have any suggestions? Note that I would like to monitor all LISP functions, not a single function. Thanks.

0 Likes
Accepted solutions (1)
613 Views
2 Replies
Replies (2)
Message 2 of 3

Ed__Jobe
Mentor
Mentor

You can still access all the COM stuff through the AcadApplication object.

Ed


Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.
How to post your code.

EESignature

0 Likes
Message 3 of 3

Anonymous
Not applicable
Accepted solution

Solved: BeginLisp is still an even that that can be used for the Acaddocument class via the function call:
"Private Sub LispMonitor(ByVal firstline As String) Handles doc.BeginLisp"

where doc is listed as an Acaddocument variable WithEvents.

 

Also, there is an event for the Document class called LispWillStart which I imagine works similarly.  Thanks.

0 Likes