Message 1 of 4
Auto Lisp for calling an EXE
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all,
I'm find issue in opening a standalone EXE through AutoLISP.
when i use the folder path of the EXE without spcae, then it works.
(defun c:calloutchk()
(command "sh" "d://visualstudio2015/Debug/FormApplication.exe"))
when i use the folder path of the EXE with spcae, then it is not working.
(defun c:calloutchk()
;;(command "sh" "C://Users/90001284/Documents/Visual%20Studio%202015/Projects/Drawing%20Call%20out%20checkig/FormApplication/bin/Debug/FormApplication.exe"))
Kindly please Help