Is it possable to plot previous using VBA?

Is it possable to plot previous using VBA?

muckmailer
Collaborator Collaborator
834 Views
3 Replies
Message 1 of 4

Is it possable to plot previous using VBA?

muckmailer
Collaborator
Collaborator
AutoCAD 2010, VBA

Is it possable to plot previous using VBA?

Thank you,
0 Likes
835 Views
3 Replies
Replies (3)
Message 2 of 4

arcticad
Advisor
Advisor
you can do it with lisp

{code}
(defun c:plotp ()
(command "-plot" "no" "" "previous plot" "" "" "" "")
)
{code}
---------------------------



(defun botsbuildbots() (botsbuildbots))
0 Likes
Message 3 of 4

wbdehaan
Enthusiast
Enthusiast
Is it possible to start it with VBA?

I do not want to use Lisp, because (when using lisp) when you click spacebar after the macro exits, it will only start the plot-command and not restart the macro.

kind regards,

Wouter de Haan
0 Likes
Message 4 of 4

arcticad
Advisor
Advisor
I just discussed that here
http://discussion.autodesk.com/forums/thread.jspa?threadID=770894&tstart=0
---------------------------



(defun botsbuildbots() (botsbuildbots))
0 Likes