asos2000 Posted May 17, 2010 Posted May 17, 2010 Could the lisp Open an Excel file then pause untill the file closed then use the data in this file? Quote
VovKa Posted May 17, 2010 Posted May 17, 2010 (vl-load-com) (defun WaitExcel (/ ExcelObj) (setvar "CMDECHO" 0) (while (setq ExcelObj (vlax-get-object "Excel.Application")) (vlax-release-object ExcelObj) (command "_.DELAY" 1000) ) ) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.