Update the date in the corner stamp

Update the date in the corner stamp

DeptaM
Enthusiast Enthusiast
456 Views
3 Replies
Message 1 of 4

Update the date in the corner stamp

DeptaM
Enthusiast
Enthusiast

Hi everyone,

I am currently working on a large project and in many cases I am copying entire reports under a new number. The creation date of assemblies and components is automatically copied to the corner stamp when created. If I copy an assembly or part, the original creation date remains there and I have to rewrite it manually in iProperties. There is a rule that would automatically update the date.
Thanks

0 Likes
Accepted solutions (1)
457 Views
3 Replies
Replies (3)
Message 2 of 4

WCrihfield
Mentor
Mentor
Accepted solution

Here is a little iLogic rule that can set the Creation Time (in the Project tab of the iProperties dialog) to Today's date.

Dim oCreationDateProp As Inventor.Property = ThisDoc.Document.PropertySets.Item(3).Item("Creation Time")
Dim oTodaysDate As Date = Now
oCreationDateProp.Value = oTodaysDate

 

If this solved your problem, or answered your question, please click ACCEPT SOLUTION.
Or, if this helped you, please click (LIKE or KUDOS) 👍.

If you want and have time, I would appreciate your Vote(s) for My IDEAS 💡or you can Explore My CONTRIBUTIONS

Wesley Crihfield

EESignature

(Not an Autodesk Employee)

Message 3 of 4

DeptaM
Enthusiast
Enthusiast

That's great. Thank you

0 Likes
Message 4 of 4

mbn
Participant
Participant
Thx, good solution. Save me time when updating drawing.
0 Likes