• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

insert the numbering of the following sheet with autocad electrical 2012

  • Thread starter Thread starter Emmeuno
  • Start date Start date

Emmeuno

Guest
Hello to all of you. I have this need and can't figure out if it's a software limit or I can't find the right commands.
following the online guide (after very difficult sessions - they are self-taught) I managed to set the attributes in a block and then realize a cartiglio where I can insert the design and design descriptions, the sheet number and the max number of sheets of the project.
when I insert another design everything works regularly (the numbering of sheets is updated etc).
I must also insert the numbering of the following sheet, but I can't understand which field is dedicated to this function, as this must also be updated when a sheet is added.
the vba is no longer present, I was wondering if you need to activate an autolips function or a script or I have to give up.
But I had done a good job all by myself.
I hope some of you professionals cross this post and can help me.
thank you in advance and good Christmas to all.
 
Thank you so much gp.
I'll put your directions in place and I'll tell you about the result.
 
OK!!!!!!!
only one thing though: when they finish the procedure and I click on the last ok on the attribute that must vary a gray rectangle that limits its visibility. must be like this or did I miss something? Can I delete it?
I'm waiting for your kind match.
greetings

 
without adding anything and just for use, using a trivial reactor you can do so that the regen is automatic whenever you use the _attedit command.

(defun c:attt ()
(vlr-command-reactor nil(:vlr-commandended . chatt)))
)

(defun chatt (reactor list-command)
(setq current command (car list-command))
(if (or (equal "attedit" current command)
(equal current command "eattedit")
)
(progn)
(princ "\n")
(vla-regen (vla-get-activedocument(vlax-get-acad-object)) acallviewports)
(princ)
)
)
)

once loaded, the attt command activates the reactor.
 
Wow! I will try to implement your suggestion.
I'll let you know in a few days (I don't have access for now to the pc with ae).
thank you so much for now and good year!! !
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
Back
Top