May 9, 2008 #1 miguelst MIS Jan 6, 2005 13 CA How can I use in an AutoLISP function, a variable from a VBA function. I'd like to call an AutoLISP function with parameters defined in VBA function
How can I use in an AutoLISP function, a variable from a VBA function. I'd like to call an AutoLISP function with parameters defined in VBA function
May 9, 2008 #2 TCARPENTER Programmer Mar 11, 2002 766 US Hi miguelst, You'll need to use the SendCommand function in VBA, and set up your lisp to accept an incoming variable: Code: SendCommand "SomeLisp " & vbaVar HTH Todd Upvote 0 Downvote
Hi miguelst, You'll need to use the SendCommand function in VBA, and set up your lisp to accept an incoming variable: Code: SendCommand "SomeLisp " & vbaVar HTH Todd