iLogic Code to speed up Updated Titleblock

iLogic Code to speed up Updated Titleblock

brianmD486F
Enthusiast Enthusiast
477 Views
4 Replies
Message 1 of 5

iLogic Code to speed up Updated Titleblock

brianmD486F
Enthusiast
Enthusiast

Hi All! 

 

So my current job can sometimes have 20-30 pages on my IDW and lot of times im going into my titleblock to edit our parts callout/finishes. Well after doing so you update that first page then have to spam okay for all the other pages to update. Is there a code out there that can run after the first update to just update all current sheets in the project?

 

Thanks!

0 Likes
Accepted solutions (1)
478 Views
4 Replies
Replies (4)
Message 2 of 5

bradeneuropeArthur
Mentor
Mentor

Is it one idw with multisheets?

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes
Message 3 of 5

brianmD486F
Enthusiast
Enthusiast

Correct, 1 IDW with multiple sheets. I never know how many total I'll have, but easy enough if I have to go in and adjust numbers to make something work. Just gets tedious when the IDW has 40+ pages and I have to sit there to click okay over and over.

0 Likes
Message 4 of 5

bradeneuropeArthur
Mentor
Mentor
Accepted solution
Dim a As Inventor.DrawingDocument = ThisDrawing.Document
Dim b As Inventor.Sheet

For Each b In a.Sheets
b.Update

Next

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes
Message 5 of 5

brianmD486F
Enthusiast
Enthusiast

Perfect! Thank you sooooo much