Author Topic: Loading CadTools inside of AutoCAD  (Read 29330 times)

denverdude

  • Newbie
  • *
  • Posts: 1
Loading CadTools inside of AutoCAD
« on: February 20, 2010, 11:54:39 PM »
Lars – Great program!

Does anyone have ideas of the best method of loading CadTools from inside of AutoCAD?  Either by a tool button or by the pulldown menu.

Thanks in advance!

Lars

  • Administrator
  • Hero Member
  • *****
  • Posts: 664
Re: Loading CadTools inside of AutoCAD
« Reply #1 on: April 01, 2010, 11:01:47 PM »
Hi! Missed to reply on this.
CadTools is a out of process software, it cant be launched inside AutoCAD.

AndreN

  • Newbie
  • *
  • Posts: 2
Re: Loading CadTools inside of AutoCAD
« Reply #2 on: September 27, 2010, 01:01:53 PM »
Hi Denverdude,

What you could do is to make a button in ACAD that open cadtools for you when you click it.  But that would be the same as adding it to your windows toolbar.

Firstly you need to make the following lisp file.

(defun c:CAT ()
(startapp "C:\\Program Files\\Cadtools\\CadTools.exe")
(princ)
)


save this as CAT__Start CADtools.lsp

Also you must make sure that the lisp file is in one of you ACAD support folders.

If you do want to make a custom button.

Go to Tool, Customize, Interface.

Then create a new button.

^C^C(load "CAT__Start CADtools") CAT

use the above macro to enter in the command section.

Save button and add to your ribbon or a toolbar and PRESTO.

Is somewhat of a complex setup but it will work.

Kenan

  • Newbie
  • *
  • Posts: 21
Re: Loading CadTools inside of AutoCAD
« Reply #3 on: September 29, 2010, 08:33:08 AM »
Nice workaround for this problem, but I have CADTools icon in quick launch toolbar, it's easy to start it since it's always visible, maybe you can try that too Denverdude.