May 9, 2008 #1 miguelst MIS Joined Jan 6, 2005 Messages 13 Location 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 Joined Mar 11, 2002 Messages 766 Location 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