Judge ET tool, if not installe
Sometimes, some routine need ET ,If routine call command is "test" , so call "test" , frist, judge ET,if not installed , Pop-up prompts. Just what is ET, a LISP program, .net application, need more information. Snownut,
Express Tools
How aout simply issuing command EXPRESSTOOLS
ymg (if (findfile "acetutil.arx")
Problem has been resolved!
andy_lee,
with
(if (findfile "acetutil.arx")
you are only testing the file existence at your system, to test if loaded, try
(if (member "acetutil.arx" (arx))
HTH
Henrique
Thank you so much!hmsilva, That's good! You're welcome, andy lee!
Glad I could help
Henrique
Good friend!
Could like this
(if (or (member "acetutil.arx" (arx)) (and (findfile "acetutil.arx")(arxload "acetutil.arx"))) Maybe something like this
(if (not (member "acetutil.arx" (arx)));; test if loaded (if (findfile "acetutil.arx");; if not, test if find (arxload "acetutil.arx");; if find, load (prompt "\n\"acetutil.arx\" wasn't found on the system!!!");; prompt ) (prompt "\n\"acetutil.arx\" was already loaded!!!");; prompt )
HTH
Henrique
Without such redundancy . Thank a lot!
页:
[1]
2