Express Tool Command

Discussion in 'AutoCAD' started by Steven Craig Basham, Jun 15, 2004.

  1. Hello, I've written a LISP routine that uses the qlattach command from the
    express tools. My problem is that is only works if I've ran the command
    (qlattach) manually before running my code to call it. How do I get lisp to
    load/run qlattach without having to manually run qlattach first? I noticed
    it resides in the leaders.arx file.

    Thank you for your help!
     
    Steven Craig Basham, Jun 15, 2004
    #1
  2. Steven Craig Basham

    Mark Douglas Guest

    Try running it from Script First to start the command then use you code for
    the rest.

    Mark
     
    Mark Douglas, Jun 15, 2004
    #2
  3. Steven Craig Basham

    ECCAD Guest

    (if (not qlattach)(arxload "leaders"))
    ..
    then
    (qlattach)

    Bob
     
    ECCAD, Jun 15, 2004
    #3
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.