I need to find a way to automate the layer translater. Does anyone have any
ideas on how to do this?
Nate
I need to find a way to automate the layer translater. Does anyone have any
ideas on how to do this?
Nate
Apologies for the LISP but I don't think you can do it with VBA.
;|
Loads the given standards file, and runs the LayTrans command using that
file.
Usage: (i:LayTrans fName)
Arguments: fName string, filename of the .dws file
Returns: n/a
|;
(defun i:LayTrans (fName)
(cond ((not (member "laytrans.arx" (arx))) (arxload "laytrans")))
(acet-laytrans fName (+ 1 4 8))
(princ))
--
R. Robert Bell
"Nate Hunter" <nhunter@planningdesignbuild.com> wrote in message
news:41c33bea_1@newsprd01...
I need to find a way to automate the layer translater. Does anyone have any
ideas on how to do this?
Nate
thanks this was exactly what I was looking for
Nate
"R. Robert Bell" <NOT.RobertB@MWEngineers.com> wrote in message
news:41c35663$1_1@newsprd01...
Apologies for the LISP but I don't think you can do it with VBA.
;|
Loads the given standards file, and runs the LayTrans command using that
file.
Usage: (i:LayTrans fName)
Arguments: fName string, filename of the .dws file
Returns: n/a
|;
(defun i:LayTrans (fName)
(cond ((not (member "laytrans.arx" (arx))) (arxload "laytrans")))
(acet-laytrans fName (+ 1 4 8))
(princ))
--
R. Robert Bell
"Nate Hunter" <nhunter@planningdesignbuild.com> wrote in message
news:41c33bea_1@newsprd01...
I need to find a way to automate the layer translater. Does anyone have
any
ideas on how to do this?
Nate