What verision of AutoCAD?

Discussion in 'AutoCAD' started by ChrisW, May 24, 2004.

  1. ChrisW

    ChrisW Guest

    What would be the easiest way to determine if my lisp routine is running
    inside AutoCAD or AutoCAD Electrical?
     
    ChrisW, May 24, 2004
    #1
  2. ChrisW

    Paul Turvill Guest

    What do you mean by "running"? If it's *loaded* you can tell by checking to
    see if a defined function or command is available:

    (if MyFunc
    (alert "MyFunc is loaded.")
    (alert "MyFunc is not loaded.")
    )
    or
    (if C:MyCmd
    (alert "MyCmd is loaded.")
    (alert "MyCmd is not loaded.")
    )
    ___
     
    Paul Turvill, May 24, 2004
    #2
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.