Jump to content

Judge ET tool, if not installed, not loader and prompt.


Recommended Posts

Posted (edited)

Sometimes, some routine need ET ,

If routine call command is "test" , so call "test" , frist, judge ET,if not installed , Pop-up prompts.

Edited by andy_lee
Posted

Just what is ET, a LISP program, .net application, need more information.

Posted

Snownut,

 

Express Tools

 

How aout simply issuing command EXPRESSTOOLS

 

ymg

Posted

 (if (findfile "acetutil.arx")

 

Problem has been resolved!

Posted
 (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

Posted
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!

Posted

You're welcome, andy lee!

Glad I could help

 

Henrique

Posted
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")))

Posted

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

Posted
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!

Posted

Whatever happened to looking at your screen or is that too taxing?

Posted
Without such redundancy . Thank a lot!

andy lee,

it's not redundancy, is just a way to get feedback from the test function...

 

Henrique

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...