Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VBA variable as AutoLISP parameter

Status
Not open for further replies.

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
 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top