Author Topic: Open Plot Style Table Editor  (Read 2496 times)

0 Members and 1 Guest are viewing this topic.

FELIX

  • Bull Frog
  • Posts: 242
Open Plot Style Table Editor
« on: August 26, 2012, 06:16:48 PM »
It is possible to open the Plot Style Table Editor to a CTB file directly Autolisp?
OK.

Lee Mac

  • Seagull
  • Posts: 12914
  • London, England
Re: Open Plot Style Table Editor
« Reply #1 on: August 26, 2012, 07:03:16 PM »
Try:
Code - Auto/Visual Lisp: [Select]
  1. (startapp "explorer" "YourDrive:\\YourPath\\YourCTBFile.ctb")

(Change the path to suit of course)

myloveflyer

  • Newt
  • Posts: 152
Re: Open Plot Style Table Editor
« Reply #2 on: August 26, 2012, 08:34:50 PM »
(defun get-printers (/ return wshnetwork printlst i)
  (vl-catch-all-apply
    '(lambda ()
       (setq WshNetwork (vlax-create-object "wscript.Network"))
       (setq return (vlax-invoke WshNetwork 'EnumPrinterConnections))
       (setq i 1)
       (vlax-release-object WshNetwork)
       (repeat (/ (vlax-get return 'length) 2)
  (setq printlst (cons (vla-item return i) printlst))
  (setq i (+ 2 i))
       )
     )
  )
  printlst
)
Never give up !

Rod

  • Newt
  • Posts: 185
Re: Open Plot Style Table Editor
« Reply #3 on: August 26, 2012, 10:39:05 PM »
There is a standalone plot style viewer govert plot style viewer found at
http://www.noliturbare.com/plot-print/print-ctbs-and-more
it seems to be down at the moment though
"All models are wrong, some models are useful" - George Box

HasanCAD

  • Swamp Rat
  • Posts: 1422
Re: Open Plot Style Table Editor
« Reply #4 on: August 27, 2012, 03:26:15 AM »