<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876918#M157806</link>
    <description>Calm down boy, calm down!&lt;BR /&gt;
&lt;BR /&gt;
Saludos, Jorge Jimenez, SICAD S.A, Costa Rica&lt;BR /&gt;
&lt;BR /&gt;
"R. Robert Bell" wrote:&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt; Oops, second post did *not* have "put". Rats.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; R. Robert Bell, MCSE&lt;BR /&gt;
&amp;gt; Xtending the Power&lt;BR /&gt;
&amp;gt; www.acadx.com&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; R. Robert Bell &lt;ROBERTB&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:ef204c5.8@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; | AC2K is what you want. Ignore the man behind the curtain (I mean my first&lt;BR /&gt;
&amp;gt; | post), use the second post with (vlax-put-property).&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | --&lt;BR /&gt;
&amp;gt; | R. Robert Bell, MCSE&lt;BR /&gt;
&amp;gt; | Xtending the Power&lt;BR /&gt;
&amp;gt; | www.acadx.com&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
&amp;gt; | news:ef204c5.5@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; | | Sorry Robert - I forgot to add that I am using AutoCAD 2000&lt;BR /&gt;
&amp;gt; | |&lt;BR /&gt;
&amp;gt; | | Kevin.&lt;BR /&gt;
&amp;gt; | |&lt;BR /&gt;
&amp;gt; | | R. Robert Bell &lt;ROBERTB&gt; wrote in message&lt;BR /&gt;
&amp;gt; | | news:ef204c5.3@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; | | &amp;gt; What version of AutoCAD? If it is AC2K, you can set it via ActiveX:&lt;BR /&gt;
&amp;gt; | | &amp;gt;&lt;BR /&gt;
&amp;gt; | | &amp;gt; (defun setPlotCopies (Copies)&lt;BR /&gt;
&amp;gt; | | &amp;gt;  (vl-load-com)&lt;BR /&gt;
&amp;gt; | | &amp;gt;  (vlax-set-property&lt;BR /&gt;
&amp;gt; | | &amp;gt;   (vla-get-Plot&lt;BR /&gt;
&amp;gt; | | &amp;gt;    (vla-get-ActiveDocument&lt;BR /&gt;
&amp;gt; | | &amp;gt;     (vlax-get-acad-object)&lt;BR /&gt;
&amp;gt; | | &amp;gt;    ) ;_ closes vla-get-ActiveDocument&lt;BR /&gt;
&amp;gt; | | &amp;gt;   ) ;_ closes vla-get-AcadPlot&lt;BR /&gt;
&amp;gt; | | &amp;gt;   "NumberOfCopies"&lt;BR /&gt;
&amp;gt; | | &amp;gt;   Copies&lt;BR /&gt;
&amp;gt; | | &amp;gt;  ) ;_ closes vla-put-property&lt;BR /&gt;
&amp;gt; | | &amp;gt; ) ;_ closes defun&lt;BR /&gt;
&amp;gt; | | &amp;gt;&lt;BR /&gt;
&amp;gt; | | &amp;gt; (If you saw my first post, it had a typo!)&lt;BR /&gt;
&amp;gt; | | &amp;gt;&lt;BR /&gt;
&amp;gt; | | &amp;gt; --&lt;BR /&gt;
&amp;gt; | | &amp;gt; R. Robert Bell, MCSE&lt;BR /&gt;
&amp;gt; | | &amp;gt; Xtending the Power&lt;BR /&gt;
&amp;gt; | | &amp;gt; www.acadx.com&lt;BR /&gt;
&amp;gt; | | &amp;gt;&lt;BR /&gt;
&amp;gt; | | &amp;gt; Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
&amp;gt; | | &amp;gt; news:ef204c5.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; | | &amp;gt; | I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
&amp;gt; | | &amp;gt; | From one simple command it updates a drawings status, measures its&lt;BR /&gt;
&amp;gt; | size,&lt;BR /&gt;
&amp;gt; | | &amp;gt; | sets the paper size and plots the drawing&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt; | One thing I would like to add to it is a feature that allows the&lt;BR /&gt;
&amp;gt; user&lt;BR /&gt;
&amp;gt; | to&lt;BR /&gt;
&amp;gt; | | &amp;gt; | print multiple copies in one go.&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt; | The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my&lt;BR /&gt;
&amp;gt; | plot&lt;BR /&gt;
&amp;gt; | | &amp;gt; | routine uses the command from the&lt;BR /&gt;
&amp;gt; | | &amp;gt; | command prompt by issuing -PLOT&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt; | The problem is that the number of copies does not feature in the&lt;BR /&gt;
&amp;gt; | command&lt;BR /&gt;
&amp;gt; | | &amp;gt; | prompt version of the command&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt; | Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt; | P.S. I thought of just getting the routine to run -PLOT several&lt;BR /&gt;
&amp;gt; times&lt;BR /&gt;
&amp;gt; | | for&lt;BR /&gt;
&amp;gt; | | &amp;gt; | the number of copies - but I dismissed this as it would take longer&lt;BR /&gt;
&amp;gt; to&lt;BR /&gt;
&amp;gt; | | &amp;gt; send&lt;BR /&gt;
&amp;gt; | | &amp;gt; | and plot&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt; | Any help would be appreciated.&lt;BR /&gt;
&amp;gt; | | &amp;gt; | Kevin.&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt;&lt;BR /&gt;
&amp;gt; | |&lt;BR /&gt;
&amp;gt; |&lt;/KEVIN&gt;&lt;/ROBERTB&gt;&lt;/KEVIN&gt;&lt;/ROBERTB&gt;</description>
    <pubDate>Thu, 08 Jun 2000 18:01:35 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2000-06-08T18:01:35Z</dc:date>
    <item>
      <title>Plotting multiple copies from command prompt</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876904#M157792</link>
      <description>I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
From one simple command it updates a drawings status, measures its size,&lt;BR /&gt;
sets the paper size and plots the drawing&lt;BR /&gt;
&lt;BR /&gt;
One thing I would like to add to it is a feature that allows the user to&lt;BR /&gt;
print multiple copies in one go.&lt;BR /&gt;
&lt;BR /&gt;
The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my plot&lt;BR /&gt;
routine uses the command from the&lt;BR /&gt;
command prompt by issuing -PLOT&lt;BR /&gt;
&lt;BR /&gt;
The problem is that the number of copies does not feature in the command&lt;BR /&gt;
prompt version of the command&lt;BR /&gt;
&lt;BR /&gt;
Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
&lt;BR /&gt;
P.S. I thought of just getting the routine to run -PLOT several times for&lt;BR /&gt;
the number of copies - but I dismissed this as it would take longer to send&lt;BR /&gt;
and plot&lt;BR /&gt;
&lt;BR /&gt;
Any help would be appreciated.&lt;BR /&gt;
Kevin.</description>
      <pubDate>Wed, 07 Jun 2000 16:29:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876904#M157792</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-07T16:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting multiple copies from command prompt</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876905#M157793</link>
      <description>Only thing I can think of is to choose the&lt;BR /&gt;
option to Plot to file, then run that file&lt;BR /&gt;
through the appropriate number of times.&lt;BR /&gt;
Maybe that'd be faster than rerunning the&lt;BR /&gt;
plot?&lt;BR /&gt;
&lt;BR /&gt;
-- Jeremiah&lt;BR /&gt;
&lt;BR /&gt;
=====================================&lt;BR /&gt;
Lifted Axis&lt;BR /&gt;
www.liftedaxis.com&lt;BR /&gt;
Great AutoCAD Tools starting at $10&lt;BR /&gt;
=====================================</description>
      <pubDate>Thu, 08 Jun 2000 00:13:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876905#M157793</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T00:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting multiple copies from command prompt</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876906#M157794</link>
      <description>Can your plotter be set to print more than one copy (from DOS Command Line&lt;BR /&gt;
maybe)?&lt;BR /&gt;
&lt;BR /&gt;
"Kevin Bell" &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
news:ef204c5.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
&amp;gt; From one simple command it updates a drawings status, measures its size,&lt;BR /&gt;
&amp;gt; sets the paper size and plots the drawing&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; One thing I would like to add to it is a feature that allows the user to&lt;BR /&gt;
&amp;gt; print multiple copies in one go.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my plot&lt;BR /&gt;
&amp;gt; routine uses the command from the&lt;BR /&gt;
&amp;gt; command prompt by issuing -PLOT&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; The problem is that the number of copies does not feature in the command&lt;BR /&gt;
&amp;gt; prompt version of the command&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; P.S. I thought of just getting the routine to run -PLOT several times for&lt;BR /&gt;
&amp;gt; the number of copies - but I dismissed this as it would take longer to&lt;BR /&gt;
send&lt;BR /&gt;
&amp;gt; and plot&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Any help would be appreciated.&lt;BR /&gt;
&amp;gt; Kevin.&lt;BR /&gt;
&amp;gt;&lt;/KEVIN&gt;</description>
      <pubDate>Thu, 08 Jun 2000 06:19:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876906#M157794</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T06:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting multiple copies from command prompt</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876907#M157795</link>
      <description>What version of AutoCAD? If it is AC2K, you can set it via ActiveX:&lt;BR /&gt;
&lt;BR /&gt;
(defun setPlotCopies (Copies)&lt;BR /&gt;
 (vl-load-com)&lt;BR /&gt;
 (vlax-get-property&lt;BR /&gt;
  (vla-get-Plot&lt;BR /&gt;
   (vla-get-ActiveDocument&lt;BR /&gt;
    (vlax-get-acad-object)&lt;BR /&gt;
   ) ;_ closes vla-get-ActiveDocument&lt;BR /&gt;
  ) ;_ closes vla-get-AcadPlot&lt;BR /&gt;
  "NumberOfCopies"&lt;BR /&gt;
  Copies&lt;BR /&gt;
 ) ;_ closes vla-put-property&lt;BR /&gt;
) ;_ closes defun&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
R. Robert Bell, MCSE&lt;BR /&gt;
Xtending the Power&lt;BR /&gt;
www.acadx.com&lt;BR /&gt;
&lt;BR /&gt;
Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
news:ef204c5.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
| I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
| From one simple command it updates a drawings status, measures its size,&lt;BR /&gt;
| sets the paper size and plots the drawing&lt;BR /&gt;
|&lt;BR /&gt;
| One thing I would like to add to it is a feature that allows the user to&lt;BR /&gt;
| print multiple copies in one go.&lt;BR /&gt;
|&lt;BR /&gt;
| The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my plot&lt;BR /&gt;
| routine uses the command from the&lt;BR /&gt;
| command prompt by issuing -PLOT&lt;BR /&gt;
|&lt;BR /&gt;
| The problem is that the number of copies does not feature in the command&lt;BR /&gt;
| prompt version of the command&lt;BR /&gt;
|&lt;BR /&gt;
| Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
|&lt;BR /&gt;
| P.S. I thought of just getting the routine to run -PLOT several times for&lt;BR /&gt;
| the number of copies - but I dismissed this as it would take longer to&lt;BR /&gt;
send&lt;BR /&gt;
| and plot&lt;BR /&gt;
|&lt;BR /&gt;
| Any help would be appreciated.&lt;BR /&gt;
| Kevin.&lt;BR /&gt;
|&lt;/KEVIN&gt;</description>
      <pubDate>Thu, 08 Jun 2000 14:34:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876907#M157795</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T14:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting multiple copies from command prompt</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876908#M157796</link>
      <description>What version of AutoCAD? If it is AC2K, you can set it via ActiveX:&lt;BR /&gt;
&lt;BR /&gt;
(defun setPlotCopies (Copies)&lt;BR /&gt;
 (vl-load-com)&lt;BR /&gt;
 (vlax-set-property&lt;BR /&gt;
  (vla-get-Plot&lt;BR /&gt;
   (vla-get-ActiveDocument&lt;BR /&gt;
    (vlax-get-acad-object)&lt;BR /&gt;
   ) ;_ closes vla-get-ActiveDocument&lt;BR /&gt;
  ) ;_ closes vla-get-AcadPlot&lt;BR /&gt;
  "NumberOfCopies"&lt;BR /&gt;
  Copies&lt;BR /&gt;
 ) ;_ closes vla-put-property&lt;BR /&gt;
) ;_ closes defun&lt;BR /&gt;
&lt;BR /&gt;
(If you saw my first post, it had a typo!)&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
R. Robert Bell, MCSE&lt;BR /&gt;
Xtending the Power&lt;BR /&gt;
www.acadx.com&lt;BR /&gt;
&lt;BR /&gt;
Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
news:ef204c5.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
| I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
| From one simple command it updates a drawings status, measures its size,&lt;BR /&gt;
| sets the paper size and plots the drawing&lt;BR /&gt;
|&lt;BR /&gt;
| One thing I would like to add to it is a feature that allows the user to&lt;BR /&gt;
| print multiple copies in one go.&lt;BR /&gt;
|&lt;BR /&gt;
| The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my plot&lt;BR /&gt;
| routine uses the command from the&lt;BR /&gt;
| command prompt by issuing -PLOT&lt;BR /&gt;
|&lt;BR /&gt;
| The problem is that the number of copies does not feature in the command&lt;BR /&gt;
| prompt version of the command&lt;BR /&gt;
|&lt;BR /&gt;
| Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
|&lt;BR /&gt;
| P.S. I thought of just getting the routine to run -PLOT several times for&lt;BR /&gt;
| the number of copies - but I dismissed this as it would take longer to&lt;BR /&gt;
send&lt;BR /&gt;
| and plot&lt;BR /&gt;
|&lt;BR /&gt;
| Any help would be appreciated.&lt;BR /&gt;
| Kevin.&lt;BR /&gt;
|&lt;/KEVIN&gt;</description>
      <pubDate>Thu, 08 Jun 2000 14:38:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876908#M157796</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T14:38:13Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876909#M157797</link>
      <description>Hi Robert,&lt;BR /&gt;
&lt;BR /&gt;
Your lisp looks like the thing I need but when I run it I get the&lt;BR /&gt;
message;&lt;BR /&gt;
&lt;BR /&gt;
; error: no function definition: VLAX-SET-PROPERTY&lt;BR /&gt;
&lt;BR /&gt;
Any ideas ???&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
Kevin.&lt;BR /&gt;
&lt;BR /&gt;
R. Robert Bell &lt;ROBERTB&gt; wrote in message&lt;BR /&gt;
news:ef204c5.3@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; What version of AutoCAD? If it is AC2K, you can set it via ActiveX:&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; (defun setPlotCopies (Copies)&lt;BR /&gt;
&amp;gt;  (vl-load-com)&lt;BR /&gt;
&amp;gt;  (vlax-set-property&lt;BR /&gt;
&amp;gt;   (vla-get-Plot&lt;BR /&gt;
&amp;gt;    (vla-get-ActiveDocument&lt;BR /&gt;
&amp;gt;     (vlax-get-acad-object)&lt;BR /&gt;
&amp;gt;    ) ;_ closes vla-get-ActiveDocument&lt;BR /&gt;
&amp;gt;   ) ;_ closes vla-get-AcadPlot&lt;BR /&gt;
&amp;gt;   "NumberOfCopies"&lt;BR /&gt;
&amp;gt;   Copies&lt;BR /&gt;
&amp;gt;  ) ;_ closes vla-put-property&lt;BR /&gt;
&amp;gt; ) ;_ closes defun&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; (If you saw my first post, it had a typo!)&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; R. Robert Bell, MCSE&lt;BR /&gt;
&amp;gt; Xtending the Power&lt;BR /&gt;
&amp;gt; www.acadx.com&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:ef204c5.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; | I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
&amp;gt; | From one simple command it updates a drawings status, measures its size,&lt;BR /&gt;
&amp;gt; | sets the paper size and plots the drawing&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | One thing I would like to add to it is a feature that allows the user to&lt;BR /&gt;
&amp;gt; | print multiple copies in one go.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my plot&lt;BR /&gt;
&amp;gt; | routine uses the command from the&lt;BR /&gt;
&amp;gt; | command prompt by issuing -PLOT&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | The problem is that the number of copies does not feature in the command&lt;BR /&gt;
&amp;gt; | prompt version of the command&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | P.S. I thought of just getting the routine to run -PLOT several times&lt;BR /&gt;
for&lt;BR /&gt;
&amp;gt; | the number of copies - but I dismissed this as it would take longer to&lt;BR /&gt;
&amp;gt; send&lt;BR /&gt;
&amp;gt; | and plot&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | Any help would be appreciated.&lt;BR /&gt;
&amp;gt; | Kevin.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt;&lt;/KEVIN&gt;&lt;/ROBERTB&gt;</description>
      <pubDate>Thu, 08 Jun 2000 16:44:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876909#M157797</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T16:44:24Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876910#M157798</link>
      <description>Sorry Robert - I forgot to add that I am using AutoCAD 2000&lt;BR /&gt;
&lt;BR /&gt;
Kevin.&lt;BR /&gt;
&lt;BR /&gt;
R. Robert Bell &lt;ROBERTB&gt; wrote in message&lt;BR /&gt;
news:ef204c5.3@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; What version of AutoCAD? If it is AC2K, you can set it via ActiveX:&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; (defun setPlotCopies (Copies)&lt;BR /&gt;
&amp;gt;  (vl-load-com)&lt;BR /&gt;
&amp;gt;  (vlax-set-property&lt;BR /&gt;
&amp;gt;   (vla-get-Plot&lt;BR /&gt;
&amp;gt;    (vla-get-ActiveDocument&lt;BR /&gt;
&amp;gt;     (vlax-get-acad-object)&lt;BR /&gt;
&amp;gt;    ) ;_ closes vla-get-ActiveDocument&lt;BR /&gt;
&amp;gt;   ) ;_ closes vla-get-AcadPlot&lt;BR /&gt;
&amp;gt;   "NumberOfCopies"&lt;BR /&gt;
&amp;gt;   Copies&lt;BR /&gt;
&amp;gt;  ) ;_ closes vla-put-property&lt;BR /&gt;
&amp;gt; ) ;_ closes defun&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; (If you saw my first post, it had a typo!)&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; R. Robert Bell, MCSE&lt;BR /&gt;
&amp;gt; Xtending the Power&lt;BR /&gt;
&amp;gt; www.acadx.com&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:ef204c5.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; | I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
&amp;gt; | From one simple command it updates a drawings status, measures its size,&lt;BR /&gt;
&amp;gt; | sets the paper size and plots the drawing&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | One thing I would like to add to it is a feature that allows the user to&lt;BR /&gt;
&amp;gt; | print multiple copies in one go.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my plot&lt;BR /&gt;
&amp;gt; | routine uses the command from the&lt;BR /&gt;
&amp;gt; | command prompt by issuing -PLOT&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | The problem is that the number of copies does not feature in the command&lt;BR /&gt;
&amp;gt; | prompt version of the command&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | P.S. I thought of just getting the routine to run -PLOT several times&lt;BR /&gt;
for&lt;BR /&gt;
&amp;gt; | the number of copies - but I dismissed this as it would take longer to&lt;BR /&gt;
&amp;gt; send&lt;BR /&gt;
&amp;gt; | and plot&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | Any help would be appreciated.&lt;BR /&gt;
&amp;gt; | Kevin.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt;&lt;/KEVIN&gt;&lt;/ROBERTB&gt;</description>
      <pubDate>Thu, 08 Jun 2000 16:45:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876910#M157798</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T16:45:56Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876911#M157799</link>
      <description>AC2K is what you want. Ignore the man behind the curtain (I mean my first&lt;BR /&gt;
post), use the second post with (vlax-put-property).&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
R. Robert Bell, MCSE&lt;BR /&gt;
Xtending the Power&lt;BR /&gt;
www.acadx.com&lt;BR /&gt;
&lt;BR /&gt;
Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
news:ef204c5.5@WebX.SaUCah8kaAW...&lt;BR /&gt;
| Sorry Robert - I forgot to add that I am using AutoCAD 2000&lt;BR /&gt;
|&lt;BR /&gt;
| Kevin.&lt;BR /&gt;
|&lt;BR /&gt;
| R. Robert Bell &lt;ROBERTB&gt; wrote in message&lt;BR /&gt;
| news:ef204c5.3@WebX.SaUCah8kaAW...&lt;BR /&gt;
| &amp;gt; What version of AutoCAD? If it is AC2K, you can set it via ActiveX:&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; (defun setPlotCopies (Copies)&lt;BR /&gt;
| &amp;gt;  (vl-load-com)&lt;BR /&gt;
| &amp;gt;  (vlax-set-property&lt;BR /&gt;
| &amp;gt;   (vla-get-Plot&lt;BR /&gt;
| &amp;gt;    (vla-get-ActiveDocument&lt;BR /&gt;
| &amp;gt;     (vlax-get-acad-object)&lt;BR /&gt;
| &amp;gt;    ) ;_ closes vla-get-ActiveDocument&lt;BR /&gt;
| &amp;gt;   ) ;_ closes vla-get-AcadPlot&lt;BR /&gt;
| &amp;gt;   "NumberOfCopies"&lt;BR /&gt;
| &amp;gt;   Copies&lt;BR /&gt;
| &amp;gt;  ) ;_ closes vla-put-property&lt;BR /&gt;
| &amp;gt; ) ;_ closes defun&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; (If you saw my first post, it had a typo!)&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; --&lt;BR /&gt;
| &amp;gt; R. Robert Bell, MCSE&lt;BR /&gt;
| &amp;gt; Xtending the Power&lt;BR /&gt;
| &amp;gt; www.acadx.com&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
| &amp;gt; news:ef204c5.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
| &amp;gt; | I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
| &amp;gt; | From one simple command it updates a drawings status, measures its&lt;BR /&gt;
size,&lt;BR /&gt;
| &amp;gt; | sets the paper size and plots the drawing&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt; | One thing I would like to add to it is a feature that allows the user&lt;BR /&gt;
to&lt;BR /&gt;
| &amp;gt; | print multiple copies in one go.&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt; | The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my&lt;BR /&gt;
plot&lt;BR /&gt;
| &amp;gt; | routine uses the command from the&lt;BR /&gt;
| &amp;gt; | command prompt by issuing -PLOT&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt; | The problem is that the number of copies does not feature in the&lt;BR /&gt;
command&lt;BR /&gt;
| &amp;gt; | prompt version of the command&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt; | Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt; | P.S. I thought of just getting the routine to run -PLOT several times&lt;BR /&gt;
| for&lt;BR /&gt;
| &amp;gt; | the number of copies - but I dismissed this as it would take longer to&lt;BR /&gt;
| &amp;gt; send&lt;BR /&gt;
| &amp;gt; | and plot&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt; | Any help would be appreciated.&lt;BR /&gt;
| &amp;gt; | Kevin.&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
|&lt;/KEVIN&gt;&lt;/ROBERTB&gt;&lt;/KEVIN&gt;</description>
      <pubDate>Thu, 08 Jun 2000 16:49:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876911#M157799</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T16:49:59Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876912#M157800</link>
      <description>That should be VLAX-PUT-PROPERTY.&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Attitudes are contagious. Is yours worth catching?&lt;BR /&gt;
http://www.acadx.com&lt;BR /&gt;
&lt;BR /&gt;
"Kevin Bell" &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
news:ef204c5.4@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; Hi Robert,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Your lisp looks like the thing I need but when I run it I get the&lt;BR /&gt;
&amp;gt; message;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; ; error: no function definition: VLAX-SET-PROPERTY&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Any ideas ???&lt;/KEVIN&gt;</description>
      <pubDate>Thu, 08 Jun 2000 16:51:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876912#M157800</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T16:51:39Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876913#M157801</link>
      <description>Second post fixed that. Stupid abortive cancels!!!!!!!!!!!! Anne!!!!!!&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
R. Robert Bell, MCSE&lt;BR /&gt;
Xtending the Power&lt;BR /&gt;
www.acadx.com&lt;BR /&gt;
&lt;BR /&gt;
Frank Oquendo &lt;FRANKO&gt; wrote in message&lt;BR /&gt;
news:ef204c5.6@WebX.SaUCah8kaAW...&lt;BR /&gt;
| That should be VLAX-PUT-PROPERTY.&lt;BR /&gt;
|&lt;BR /&gt;
| --&lt;BR /&gt;
| Attitudes are contagious. Is yours worth catching?&lt;BR /&gt;
| http://www.acadx.com&lt;BR /&gt;
|&lt;BR /&gt;
| "Kevin Bell" &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
| news:ef204c5.4@WebX.SaUCah8kaAW...&lt;BR /&gt;
| &amp;gt; Hi Robert,&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; Your lisp looks like the thing I need but when I run it I get the&lt;BR /&gt;
| &amp;gt; message;&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; ; error: no function definition: VLAX-SET-PROPERTY&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; Any ideas ???&lt;BR /&gt;
|&lt;/KEVIN&gt;&lt;/FRANKO&gt;</description>
      <pubDate>Thu, 08 Jun 2000 16:51:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876913#M157801</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T16:51:39Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876914#M157802</link>
      <description>Thanks Frank. Had code right, changed it to verify, forgot to change it&lt;BR /&gt;
back, frustrated on cancel, blissfully "fixed" code, posted without second&lt;BR /&gt;
check, cursed life, the universe, everything...&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
R. Robert Bell, MCSE&lt;BR /&gt;
Xtending the Power&lt;BR /&gt;
www.acadx.com&lt;BR /&gt;
&lt;BR /&gt;
Frank Oquendo &lt;FRANKO&gt; wrote in message&lt;BR /&gt;
news:ef204c5.6@WebX.SaUCah8kaAW...&lt;BR /&gt;
| That should be VLAX-PUT-PROPERTY.&lt;BR /&gt;
|&lt;BR /&gt;
| --&lt;BR /&gt;
| Attitudes are contagious. Is yours worth catching?&lt;BR /&gt;
| http://www.acadx.com&lt;BR /&gt;
|&lt;BR /&gt;
| "Kevin Bell" &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
| news:ef204c5.4@WebX.SaUCah8kaAW...&lt;BR /&gt;
| &amp;gt; Hi Robert,&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; Your lisp looks like the thing I need but when I run it I get the&lt;BR /&gt;
| &amp;gt; message;&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; ; error: no function definition: VLAX-SET-PROPERTY&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; Any ideas ???&lt;BR /&gt;
|&lt;/KEVIN&gt;&lt;/FRANKO&gt;</description>
      <pubDate>Thu, 08 Jun 2000 16:52:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876914#M157802</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T16:52:21Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876915#M157803</link>
      <description>Second post was wrong too. Frank set it straight (vlax-put-property), which&lt;BR /&gt;
is what I had to begin with (really!, no really!)&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
R. Robert Bell, MCSE&lt;BR /&gt;
Xtending the Power&lt;BR /&gt;
www.acadx.com&lt;BR /&gt;
&lt;BR /&gt;
Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
news:ef204c5.5@WebX.SaUCah8kaAW...&lt;BR /&gt;
| Sorry Robert - I forgot to add that I am using AutoCAD 2000&lt;BR /&gt;
|&lt;BR /&gt;
| Kevin.&lt;BR /&gt;
|&lt;BR /&gt;
| R. Robert Bell &lt;ROBERTB&gt; wrote in message&lt;BR /&gt;
| news:ef204c5.3@WebX.SaUCah8kaAW...&lt;BR /&gt;
| &amp;gt; What version of AutoCAD? If it is AC2K, you can set it via ActiveX:&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; (defun setPlotCopies (Copies)&lt;BR /&gt;
| &amp;gt;  (vl-load-com)&lt;BR /&gt;
| &amp;gt;  (vlax-set-property&lt;BR /&gt;
| &amp;gt;   (vla-get-Plot&lt;BR /&gt;
| &amp;gt;    (vla-get-ActiveDocument&lt;BR /&gt;
| &amp;gt;     (vlax-get-acad-object)&lt;BR /&gt;
| &amp;gt;    ) ;_ closes vla-get-ActiveDocument&lt;BR /&gt;
| &amp;gt;   ) ;_ closes vla-get-AcadPlot&lt;BR /&gt;
| &amp;gt;   "NumberOfCopies"&lt;BR /&gt;
| &amp;gt;   Copies&lt;BR /&gt;
| &amp;gt;  ) ;_ closes vla-put-property&lt;BR /&gt;
| &amp;gt; ) ;_ closes defun&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; (If you saw my first post, it had a typo!)&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; --&lt;BR /&gt;
| &amp;gt; R. Robert Bell, MCSE&lt;BR /&gt;
| &amp;gt; Xtending the Power&lt;BR /&gt;
| &amp;gt; www.acadx.com&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
| &amp;gt; Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
| &amp;gt; news:ef204c5.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
| &amp;gt; | I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
| &amp;gt; | From one simple command it updates a drawings status, measures its&lt;BR /&gt;
size,&lt;BR /&gt;
| &amp;gt; | sets the paper size and plots the drawing&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt; | One thing I would like to add to it is a feature that allows the user&lt;BR /&gt;
to&lt;BR /&gt;
| &amp;gt; | print multiple copies in one go.&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt; | The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my&lt;BR /&gt;
plot&lt;BR /&gt;
| &amp;gt; | routine uses the command from the&lt;BR /&gt;
| &amp;gt; | command prompt by issuing -PLOT&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt; | The problem is that the number of copies does not feature in the&lt;BR /&gt;
command&lt;BR /&gt;
| &amp;gt; | prompt version of the command&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt; | Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt; | P.S. I thought of just getting the routine to run -PLOT several times&lt;BR /&gt;
| for&lt;BR /&gt;
| &amp;gt; | the number of copies - but I dismissed this as it would take longer to&lt;BR /&gt;
| &amp;gt; send&lt;BR /&gt;
| &amp;gt; | and plot&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt; | Any help would be appreciated.&lt;BR /&gt;
| &amp;gt; | Kevin.&lt;BR /&gt;
| &amp;gt; |&lt;BR /&gt;
| &amp;gt;&lt;BR /&gt;
|&lt;/KEVIN&gt;&lt;/ROBERTB&gt;&lt;/KEVIN&gt;</description>
      <pubDate>Thu, 08 Jun 2000 16:53:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876915#M157803</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T16:53:31Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876916#M157804</link>
      <description>Oops, second post did *not* have "put". Rats.&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
R. Robert Bell, MCSE&lt;BR /&gt;
Xtending the Power&lt;BR /&gt;
www.acadx.com&lt;BR /&gt;
&lt;BR /&gt;
R. Robert Bell &lt;ROBERTB&gt; wrote in message&lt;BR /&gt;
news:ef204c5.8@WebX.SaUCah8kaAW...&lt;BR /&gt;
| AC2K is what you want. Ignore the man behind the curtain (I mean my first&lt;BR /&gt;
| post), use the second post with (vlax-put-property).&lt;BR /&gt;
|&lt;BR /&gt;
| --&lt;BR /&gt;
| R. Robert Bell, MCSE&lt;BR /&gt;
| Xtending the Power&lt;BR /&gt;
| www.acadx.com&lt;BR /&gt;
|&lt;BR /&gt;
| Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
| news:ef204c5.5@WebX.SaUCah8kaAW...&lt;BR /&gt;
| | Sorry Robert - I forgot to add that I am using AutoCAD 2000&lt;BR /&gt;
| |&lt;BR /&gt;
| | Kevin.&lt;BR /&gt;
| |&lt;BR /&gt;
| | R. Robert Bell &lt;ROBERTB&gt; wrote in message&lt;BR /&gt;
| | news:ef204c5.3@WebX.SaUCah8kaAW...&lt;BR /&gt;
| | &amp;gt; What version of AutoCAD? If it is AC2K, you can set it via ActiveX:&lt;BR /&gt;
| | &amp;gt;&lt;BR /&gt;
| | &amp;gt; (defun setPlotCopies (Copies)&lt;BR /&gt;
| | &amp;gt;  (vl-load-com)&lt;BR /&gt;
| | &amp;gt;  (vlax-set-property&lt;BR /&gt;
| | &amp;gt;   (vla-get-Plot&lt;BR /&gt;
| | &amp;gt;    (vla-get-ActiveDocument&lt;BR /&gt;
| | &amp;gt;     (vlax-get-acad-object)&lt;BR /&gt;
| | &amp;gt;    ) ;_ closes vla-get-ActiveDocument&lt;BR /&gt;
| | &amp;gt;   ) ;_ closes vla-get-AcadPlot&lt;BR /&gt;
| | &amp;gt;   "NumberOfCopies"&lt;BR /&gt;
| | &amp;gt;   Copies&lt;BR /&gt;
| | &amp;gt;  ) ;_ closes vla-put-property&lt;BR /&gt;
| | &amp;gt; ) ;_ closes defun&lt;BR /&gt;
| | &amp;gt;&lt;BR /&gt;
| | &amp;gt; (If you saw my first post, it had a typo!)&lt;BR /&gt;
| | &amp;gt;&lt;BR /&gt;
| | &amp;gt; --&lt;BR /&gt;
| | &amp;gt; R. Robert Bell, MCSE&lt;BR /&gt;
| | &amp;gt; Xtending the Power&lt;BR /&gt;
| | &amp;gt; www.acadx.com&lt;BR /&gt;
| | &amp;gt;&lt;BR /&gt;
| | &amp;gt; Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
| | &amp;gt; news:ef204c5.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
| | &amp;gt; | I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
| | &amp;gt; | From one simple command it updates a drawings status, measures its&lt;BR /&gt;
| size,&lt;BR /&gt;
| | &amp;gt; | sets the paper size and plots the drawing&lt;BR /&gt;
| | &amp;gt; |&lt;BR /&gt;
| | &amp;gt; | One thing I would like to add to it is a feature that allows the&lt;BR /&gt;
user&lt;BR /&gt;
| to&lt;BR /&gt;
| | &amp;gt; | print multiple copies in one go.&lt;BR /&gt;
| | &amp;gt; |&lt;BR /&gt;
| | &amp;gt; | The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my&lt;BR /&gt;
| plot&lt;BR /&gt;
| | &amp;gt; | routine uses the command from the&lt;BR /&gt;
| | &amp;gt; | command prompt by issuing -PLOT&lt;BR /&gt;
| | &amp;gt; |&lt;BR /&gt;
| | &amp;gt; | The problem is that the number of copies does not feature in the&lt;BR /&gt;
| command&lt;BR /&gt;
| | &amp;gt; | prompt version of the command&lt;BR /&gt;
| | &amp;gt; |&lt;BR /&gt;
| | &amp;gt; | Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
| | &amp;gt; |&lt;BR /&gt;
| | &amp;gt; | P.S. I thought of just getting the routine to run -PLOT several&lt;BR /&gt;
times&lt;BR /&gt;
| | for&lt;BR /&gt;
| | &amp;gt; | the number of copies - but I dismissed this as it would take longer&lt;BR /&gt;
to&lt;BR /&gt;
| | &amp;gt; send&lt;BR /&gt;
| | &amp;gt; | and plot&lt;BR /&gt;
| | &amp;gt; |&lt;BR /&gt;
| | &amp;gt; | Any help would be appreciated.&lt;BR /&gt;
| | &amp;gt; | Kevin.&lt;BR /&gt;
| | &amp;gt; |&lt;BR /&gt;
| | &amp;gt;&lt;BR /&gt;
| |&lt;BR /&gt;
|&lt;/KEVIN&gt;&lt;/ROBERTB&gt;&lt;/KEVIN&gt;&lt;/ROBERTB&gt;</description>
      <pubDate>Thu, 08 Jun 2000 16:54:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876916#M157804</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T16:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting multiple copies from command prompt</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876917#M157805</link>
      <description>What version of AutoCAD? If it is AC2K, you can set it via ActiveX:&lt;BR /&gt;
&lt;BR /&gt;
(defun setPlotCopies (Copies)&lt;BR /&gt;
 (vl-load-com)&lt;BR /&gt;
 (vlax-put-property&lt;BR /&gt;
  (vla-get-Plot&lt;BR /&gt;
   (vla-get-ActiveDocument&lt;BR /&gt;
    (vlax-get-acad-object)&lt;BR /&gt;
   ) ;_ closes vla-get-ActiveDocument&lt;BR /&gt;
  ) ;_ closes vla-get-AcadPlot&lt;BR /&gt;
  "NumberOfCopies"&lt;BR /&gt;
  Copies&lt;BR /&gt;
 ) ;_ closes vla-put-property&lt;BR /&gt;
) ;_ closes defun&lt;BR /&gt;
&lt;BR /&gt;
(If you saw my first post (or second one), it had a typo!)&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
R. Robert Bell, MCSE&lt;BR /&gt;
Xtending the Power&lt;BR /&gt;
www.acadx.com&lt;BR /&gt;
&lt;BR /&gt;
Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
news:ef204c5.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
| I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
| From one simple command it updates a drawings status, measures its size,&lt;BR /&gt;
| sets the paper size and plots the drawing&lt;BR /&gt;
|&lt;BR /&gt;
| One thing I would like to add to it is a feature that allows the user to&lt;BR /&gt;
| print multiple copies in one go.&lt;BR /&gt;
|&lt;BR /&gt;
| The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my plot&lt;BR /&gt;
| routine uses the command from the&lt;BR /&gt;
| command prompt by issuing -PLOT&lt;BR /&gt;
|&lt;BR /&gt;
| The problem is that the number of copies does not feature in the command&lt;BR /&gt;
| prompt version of the command&lt;BR /&gt;
|&lt;BR /&gt;
| Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
|&lt;BR /&gt;
| P.S. I thought of just getting the routine to run -PLOT several times for&lt;BR /&gt;
| the number of copies - but I dismissed this as it would take longer to&lt;BR /&gt;
send&lt;BR /&gt;
| and plot&lt;BR /&gt;
|&lt;BR /&gt;
| Any help would be appreciated.&lt;BR /&gt;
| Kevin.&lt;BR /&gt;
|&lt;/KEVIN&gt;</description>
      <pubDate>Thu, 08 Jun 2000 16:55:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876917#M157805</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T16:55:38Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876918#M157806</link>
      <description>Calm down boy, calm down!&lt;BR /&gt;
&lt;BR /&gt;
Saludos, Jorge Jimenez, SICAD S.A, Costa Rica&lt;BR /&gt;
&lt;BR /&gt;
"R. Robert Bell" wrote:&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt; Oops, second post did *not* have "put". Rats.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; R. Robert Bell, MCSE&lt;BR /&gt;
&amp;gt; Xtending the Power&lt;BR /&gt;
&amp;gt; www.acadx.com&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; R. Robert Bell &lt;ROBERTB&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:ef204c5.8@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; | AC2K is what you want. Ignore the man behind the curtain (I mean my first&lt;BR /&gt;
&amp;gt; | post), use the second post with (vlax-put-property).&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | --&lt;BR /&gt;
&amp;gt; | R. Robert Bell, MCSE&lt;BR /&gt;
&amp;gt; | Xtending the Power&lt;BR /&gt;
&amp;gt; | www.acadx.com&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
&amp;gt; | news:ef204c5.5@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; | | Sorry Robert - I forgot to add that I am using AutoCAD 2000&lt;BR /&gt;
&amp;gt; | |&lt;BR /&gt;
&amp;gt; | | Kevin.&lt;BR /&gt;
&amp;gt; | |&lt;BR /&gt;
&amp;gt; | | R. Robert Bell &lt;ROBERTB&gt; wrote in message&lt;BR /&gt;
&amp;gt; | | news:ef204c5.3@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; | | &amp;gt; What version of AutoCAD? If it is AC2K, you can set it via ActiveX:&lt;BR /&gt;
&amp;gt; | | &amp;gt;&lt;BR /&gt;
&amp;gt; | | &amp;gt; (defun setPlotCopies (Copies)&lt;BR /&gt;
&amp;gt; | | &amp;gt;  (vl-load-com)&lt;BR /&gt;
&amp;gt; | | &amp;gt;  (vlax-set-property&lt;BR /&gt;
&amp;gt; | | &amp;gt;   (vla-get-Plot&lt;BR /&gt;
&amp;gt; | | &amp;gt;    (vla-get-ActiveDocument&lt;BR /&gt;
&amp;gt; | | &amp;gt;     (vlax-get-acad-object)&lt;BR /&gt;
&amp;gt; | | &amp;gt;    ) ;_ closes vla-get-ActiveDocument&lt;BR /&gt;
&amp;gt; | | &amp;gt;   ) ;_ closes vla-get-AcadPlot&lt;BR /&gt;
&amp;gt; | | &amp;gt;   "NumberOfCopies"&lt;BR /&gt;
&amp;gt; | | &amp;gt;   Copies&lt;BR /&gt;
&amp;gt; | | &amp;gt;  ) ;_ closes vla-put-property&lt;BR /&gt;
&amp;gt; | | &amp;gt; ) ;_ closes defun&lt;BR /&gt;
&amp;gt; | | &amp;gt;&lt;BR /&gt;
&amp;gt; | | &amp;gt; (If you saw my first post, it had a typo!)&lt;BR /&gt;
&amp;gt; | | &amp;gt;&lt;BR /&gt;
&amp;gt; | | &amp;gt; --&lt;BR /&gt;
&amp;gt; | | &amp;gt; R. Robert Bell, MCSE&lt;BR /&gt;
&amp;gt; | | &amp;gt; Xtending the Power&lt;BR /&gt;
&amp;gt; | | &amp;gt; www.acadx.com&lt;BR /&gt;
&amp;gt; | | &amp;gt;&lt;BR /&gt;
&amp;gt; | | &amp;gt; Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
&amp;gt; | | &amp;gt; news:ef204c5.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; | | &amp;gt; | I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
&amp;gt; | | &amp;gt; | From one simple command it updates a drawings status, measures its&lt;BR /&gt;
&amp;gt; | size,&lt;BR /&gt;
&amp;gt; | | &amp;gt; | sets the paper size and plots the drawing&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt; | One thing I would like to add to it is a feature that allows the&lt;BR /&gt;
&amp;gt; user&lt;BR /&gt;
&amp;gt; | to&lt;BR /&gt;
&amp;gt; | | &amp;gt; | print multiple copies in one go.&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt; | The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my&lt;BR /&gt;
&amp;gt; | plot&lt;BR /&gt;
&amp;gt; | | &amp;gt; | routine uses the command from the&lt;BR /&gt;
&amp;gt; | | &amp;gt; | command prompt by issuing -PLOT&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt; | The problem is that the number of copies does not feature in the&lt;BR /&gt;
&amp;gt; | command&lt;BR /&gt;
&amp;gt; | | &amp;gt; | prompt version of the command&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt; | Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt; | P.S. I thought of just getting the routine to run -PLOT several&lt;BR /&gt;
&amp;gt; times&lt;BR /&gt;
&amp;gt; | | for&lt;BR /&gt;
&amp;gt; | | &amp;gt; | the number of copies - but I dismissed this as it would take longer&lt;BR /&gt;
&amp;gt; to&lt;BR /&gt;
&amp;gt; | | &amp;gt; send&lt;BR /&gt;
&amp;gt; | | &amp;gt; | and plot&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt; | Any help would be appreciated.&lt;BR /&gt;
&amp;gt; | | &amp;gt; | Kevin.&lt;BR /&gt;
&amp;gt; | | &amp;gt; |&lt;BR /&gt;
&amp;gt; | | &amp;gt;&lt;BR /&gt;
&amp;gt; | |&lt;BR /&gt;
&amp;gt; |&lt;/KEVIN&gt;&lt;/ROBERTB&gt;&lt;/KEVIN&gt;&lt;/ROBERTB&gt;</description>
      <pubDate>Thu, 08 Jun 2000 18:01:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876918#M157806</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T18:01:35Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876919#M157807</link>
      <description>LOL. Looks like a chihuahua on Jolt cola, doesn't he?&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Attitudes are contagious. Is yours worth catching?&lt;BR /&gt;
http://www.acadx.com&lt;BR /&gt;
&lt;BR /&gt;
"Jorge Jimenez" &lt;JOTAJOTA&gt; wrote in message&lt;BR /&gt;
news:393FDF7F.44716B36@sol.racsa.co.cr...&lt;BR /&gt;
&amp;gt; Calm down boy, calm down!&lt;/JOTAJOTA&gt;</description>
      <pubDate>Thu, 08 Jun 2000 18:20:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876919#M157807</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T18:20:18Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876920#M157808</link>
      <description>. \\&lt;BR /&gt;
 &amp;gt; ))&lt;BR /&gt;
. //</description>
      <pubDate>Thu, 08 Jun 2000 18:43:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876920#M157808</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T18:43:00Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876921#M157809</link>
      <description>Grrrrrr......</description>
      <pubDate>Thu, 08 Jun 2000 18:45:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876921#M157809</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T18:45:45Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876922#M157810</link>
      <description>Based on the response to this post I think you guys might find my software&lt;BR /&gt;
package quite useful.  I have a routine that I developed to plot multiple&lt;BR /&gt;
drawings to multiple locations/files.  I call this routine PlotWizard.  My&lt;BR /&gt;
Software package is described on my web page at&lt;BR /&gt;
www.homestead.com/designpro/main.html  These pages will explain to you how&lt;BR /&gt;
my auto titleblocks, and detail borders work.  Now I have not included&lt;BR /&gt;
Plotwizard on my pages yet but here is how it works.  The program is&lt;BR /&gt;
designed to plot/print specific sheet sizes to pre-set locations.  I have&lt;BR /&gt;
mine configured to got to my laser printer &amp;amp; to my plotter.  The routine is&lt;BR /&gt;
dialog based to allow you to force all drawing sizes to the laser on legal&lt;BR /&gt;
paper or letter.  These options are available for each paper size larger&lt;BR /&gt;
than letter: B,C,D,E, OR even long plots.  If this sounds interesting to you&lt;BR /&gt;
drop me a line through email on my website.  It also allows you to send to a&lt;BR /&gt;
file for spooling through windows or plotting later while you are at home&lt;BR /&gt;
watching Friends.  If you told my fellow workers that Plotwizard is no&lt;BR /&gt;
longer working they would freak.  Its simple you can plotter 100's of&lt;BR /&gt;
drawings with one selection set of borders or you pick all of those points&lt;BR /&gt;
the manual way.  Will sale for $50.00/licensed copy or $500.00 unlimited&lt;BR /&gt;
site license.  Additional cost may be required for configuring your plotter&lt;BR /&gt;
settings if needed.&lt;BR /&gt;
&lt;BR /&gt;
Sincerely,&lt;BR /&gt;
&lt;BR /&gt;
Rodney Estep&lt;BR /&gt;
&lt;BR /&gt;
R. Robert Bell &lt;ROBERTB&gt; wrote in message&lt;BR /&gt;
news:ef204c5.12@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; What version of AutoCAD? If it is AC2K, you can set it via ActiveX:&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; (defun setPlotCopies (Copies)&lt;BR /&gt;
&amp;gt;  (vl-load-com)&lt;BR /&gt;
&amp;gt;  (vlax-put-property&lt;BR /&gt;
&amp;gt;   (vla-get-Plot&lt;BR /&gt;
&amp;gt;    (vla-get-ActiveDocument&lt;BR /&gt;
&amp;gt;     (vlax-get-acad-object)&lt;BR /&gt;
&amp;gt;    ) ;_ closes vla-get-ActiveDocument&lt;BR /&gt;
&amp;gt;   ) ;_ closes vla-get-AcadPlot&lt;BR /&gt;
&amp;gt;   "NumberOfCopies"&lt;BR /&gt;
&amp;gt;   Copies&lt;BR /&gt;
&amp;gt;  ) ;_ closes vla-put-property&lt;BR /&gt;
&amp;gt; ) ;_ closes defun&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; (If you saw my first post (or second one), it had a typo!)&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; R. Robert Bell, MCSE&lt;BR /&gt;
&amp;gt; Xtending the Power&lt;BR /&gt;
&amp;gt; www.acadx.com&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:ef204c5.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; | I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
&amp;gt; | From one simple command it updates a drawings status, measures its size,&lt;BR /&gt;
&amp;gt; | sets the paper size and plots the drawing&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | One thing I would like to add to it is a feature that allows the user to&lt;BR /&gt;
&amp;gt; | print multiple copies in one go.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my plot&lt;BR /&gt;
&amp;gt; | routine uses the command from the&lt;BR /&gt;
&amp;gt; | command prompt by issuing -PLOT&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | The problem is that the number of copies does not feature in the command&lt;BR /&gt;
&amp;gt; | prompt version of the command&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | P.S. I thought of just getting the routine to run -PLOT several times&lt;BR /&gt;
for&lt;BR /&gt;
&amp;gt; | the number of copies - but I dismissed this as it would take longer to&lt;BR /&gt;
&amp;gt; send&lt;BR /&gt;
&amp;gt; | and plot&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | Any help would be appreciated.&lt;BR /&gt;
&amp;gt; | Kevin.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt;&lt;/KEVIN&gt;&lt;/ROBERTB&gt;</description>
      <pubDate>Thu, 08 Jun 2000 23:17:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876922#M157810</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-08T23:17:25Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876923#M157811</link>
      <description>Hi Robert,&lt;BR /&gt;
&lt;BR /&gt;
OK I took your lisp and added a line to set the number of plots&lt;BR /&gt;
&lt;BR /&gt;
(defun setPlotCopies (/)&lt;BR /&gt;
(setq Copies 4)&lt;BR /&gt;
 (vl-load-com)&lt;BR /&gt;
 (vlax-put-property&lt;BR /&gt;
  (vla-get-Plot&lt;BR /&gt;
   (vla-get-ActiveDocument&lt;BR /&gt;
    (vlax-get-acad-object)&lt;BR /&gt;
   ) ;_ closes vla-get-ActiveDocument&lt;BR /&gt;
  ) ;_ closes vla-get-AcadPlot&lt;BR /&gt;
  "NumberOfCopies"&lt;BR /&gt;
  Copies&lt;BR /&gt;
 ) ;_ closes vla-put-property&lt;BR /&gt;
) ;_ closes defun&lt;BR /&gt;
&lt;BR /&gt;
I then loaded the LISP into AUTOCAD 2000 and typed&lt;BR /&gt;
&lt;BR /&gt;
(setPlotCopies) which returned nil&lt;BR /&gt;
&lt;BR /&gt;
I then ran -plot :&lt;BR /&gt;
&lt;BR /&gt;
Command: -plot Detailed plot configuration? [Yes/No] &lt;NO&gt;:&lt;BR /&gt;
&lt;BR /&gt;
Enter a layout name or [?] &lt;LAYOUT1&gt;:&lt;BR /&gt;
&lt;BR /&gt;
Enter a page setup name &amp;lt;&amp;gt;:&lt;BR /&gt;
Enter an output device name or [?] &lt;OCE 9476.pc3=""&gt;:&lt;BR /&gt;
Write the plot to a file [Yes/No] &lt;N&gt;:&lt;BR /&gt;
Save changes to layout [Yes/No]? &lt;N&gt;&lt;BR /&gt;
Proceed with plot [Yes/No] &lt;Y&gt;:&lt;BR /&gt;
Effective plotting area:  291.34 wide by 412.59 high&lt;BR /&gt;
Effective plotting area:  275.76 wide by 349.00 high&lt;BR /&gt;
&lt;BR /&gt;
Plotting viewport 2.&lt;BR /&gt;
&lt;BR /&gt;
Plotting viewport 1.&lt;BR /&gt;
&lt;BR /&gt;
Command:&lt;BR /&gt;
&lt;BR /&gt;
But I couldn't get it to plot more than one print. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
Any ideas - Is it due to loading the PC3 file ??&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
Kevin.&lt;BR /&gt;
&lt;BR /&gt;
R. Robert Bell &lt;ROBERTB&gt; wrote in message&lt;BR /&gt;
news:ef204c5.12@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; What version of AutoCAD? If it is AC2K, you can set it via ActiveX:&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; (defun setPlotCopies (Copies)&lt;BR /&gt;
&amp;gt;  (vl-load-com)&lt;BR /&gt;
&amp;gt;  (vlax-put-property&lt;BR /&gt;
&amp;gt;   (vla-get-Plot&lt;BR /&gt;
&amp;gt;    (vla-get-ActiveDocument&lt;BR /&gt;
&amp;gt;     (vlax-get-acad-object)&lt;BR /&gt;
&amp;gt;    ) ;_ closes vla-get-ActiveDocument&lt;BR /&gt;
&amp;gt;   ) ;_ closes vla-get-AcadPlot&lt;BR /&gt;
&amp;gt;   "NumberOfCopies"&lt;BR /&gt;
&amp;gt;   Copies&lt;BR /&gt;
&amp;gt;  ) ;_ closes vla-put-property&lt;BR /&gt;
&amp;gt; ) ;_ closes defun&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; (If you saw my first post (or second one), it had a typo!)&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; R. Robert Bell, MCSE&lt;BR /&gt;
&amp;gt; Xtending the Power&lt;BR /&gt;
&amp;gt; www.acadx.com&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Kevin Bell &lt;KEVIN&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:ef204c5.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; | I have created a Lisp plotter routine for my office to use.&lt;BR /&gt;
&amp;gt; | From one simple command it updates a drawings status, measures its size,&lt;BR /&gt;
&amp;gt; | sets the paper size and plots the drawing&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | One thing I would like to add to it is a feature that allows the user to&lt;BR /&gt;
&amp;gt; | print multiple copies in one go.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | The AutoCAD PLOT dialog box has a 'Number of Copies' entry - but my plot&lt;BR /&gt;
&amp;gt; | routine uses the command from the&lt;BR /&gt;
&amp;gt; | command prompt by issuing -PLOT&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | The problem is that the number of copies does not feature in the command&lt;BR /&gt;
&amp;gt; | prompt version of the command&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | Does anybody know how to access this from lisp or command prompt.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | P.S. I thought of just getting the routine to run -PLOT several times&lt;BR /&gt;
for&lt;BR /&gt;
&amp;gt; | the number of copies - but I dismissed this as it would take longer to&lt;BR /&gt;
&amp;gt; send&lt;BR /&gt;
&amp;gt; | and plot&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | Any help would be appreciated.&lt;BR /&gt;
&amp;gt; | Kevin.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt;&lt;/KEVIN&gt;&lt;/ROBERTB&gt;&lt;/Y&gt;&lt;/N&gt;&lt;/N&gt;&lt;/OCE&gt;&lt;/LAYOUT1&gt;&lt;/NO&gt;</description>
      <pubDate>Fri, 09 Jun 2000 10:51:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plotting-multiple-copies-from-command-prompt/m-p/876923#M157811</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-06-09T10:51:54Z</dc:date>
    </item>
  </channel>
</rss>

