sendcommand alternatives

sendcommand alternatives

Anonymous
Not applicable
651 Views
7 Replies
Message 1 of 8

sendcommand alternatives

Anonymous
Not applicable
I'm looking for sendcommand alternatives..

what i need to do..
- turn wipeout frames off
- purge shapes
- run lisp

TIA
0 Likes
652 Views
7 Replies
Replies (7)
Message 2 of 8

fxcastil
Advocate
Advocate
Witt,
you can "call" the Lisp like this,

ThisDrawing.SendCommand Chr$(27)
ThisDrawing.SendCommand ("(VL-Load-COM)") & vbCr
ThisDrawing.SendCommand ("(load ""c:\\program files\\MyDirectory\\MyPrograml.vlx"") ") ' & vbCr
ThisDrawing.SendCommand "MyProgram" & vbCr


also search this group for" VLAX" class to execute lisp from VBA.
0 Likes
Message 3 of 8

Anonymous
Not applicable
perhaps i worded my OP wrong..

I'm not looking for a sendcommand "solution" I'm looking for OTHER ways
of doing it.. (sendcommand is interfering with the rest of my code)
0 Likes
Message 4 of 8

Anonymous
Not applicable
Wipeouts: download AsdkUnsupp2004.arx (Made by cad people but not supported, it's very good), I dont think there is any other way. tframes appears to be a command not a setvar. There may be a way with .funcall and lisp but I dont know lisp and havent figured out how to set dxf only how to retrieve it.
0 Likes
Message 5 of 8

Anonymous
Not applicable
Where do you download it from?
0 Likes
Message 6 of 8

Anonymous
Not applicable
I'm posting this as it also has Unsupp2004Regfor2005.reg which you double click and will self load the necessary into your registry to update it for 2005 or 2006. The only thing I dont like about the unsupp is that it's not part of the core cad. It really is handy.
0 Likes
Message 7 of 8

Anonymous
Not applicable
Thanks.
0 Likes
Message 8 of 8

fxcastil
Advocate
Advocate
Witt,

Did you check out (search) the "VLAX" class module descrided in this user group.

Fred
0 Likes