automatically create a second sheet processing

automatically create a second sheet processing

S_May
Mentor Mentor
749 Views
11 Replies
Message 1 of 12

automatically create a second sheet processing

S_May
Mentor
Mentor

Hello together,

 

is it possible to automatically create a second sheet processing next to the drawing with ilogic?

 

DWG.png

0 Likes
Accepted solutions (1)
750 Views
11 Replies
Replies (11)
Message 2 of 12

bradeneuropeArthur
Mentor
Mentor
I think not.
What about printing the sheet etc?

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 12

S_May
Mentor
Mentor

we would need in the company the sheet metal next to the sheet only for the laser

0 Likes
Message 4 of 12

bradeneuropeArthur
Mentor
Mentor

Why do you need a border and header than?

You or not printing or exporting!

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 12

dgreatice
Collaborator
Collaborator

You title change become how to export to DWG/DXF with scale 1 : 1 to Model View at AutoCAD.

Please use the ACCEPT AS SOLUTION or KUDOS button if my Idea helped you to solve the problem.

Autodesk Inventor Professional Certified 2014
0 Likes
Message 6 of 12

S_May
Mentor
Mentor
  1. idw save => second processing automatically next to the sheet (trigger of ilogic is the save)
  2. jobserver automatically generates dxf
  3. dxf are needed for lasers
  4. We then do this automatically at 75,000 idw in the system (PDM PROFILE)
0 Likes
Message 7 of 12

bradeneuropeArthur
Mentor
Mentor

Why don't you use the dxf file of the sheet metal part themselves. It is easier to create dxf file of the sheet metal part *.ipt by jobserver.

If help needed please let me know

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 8 of 12

Jon.Dean
Alumni
Alumni

Hi @S_May,

When you create a flat pattern of your sheetmetal part, you can right click on the flat pattern view and select "Export face as...".

This allows you to create a DXF file of just the flat pattern and does not include the drawing border and title block.

If you are sending to a laser cutter, then this method would seem to be a better method.

Cheers

Jon.



Jon Dean

0 Likes
Message 9 of 12

S_May
Mentor
Mentor
Accepted solution

Hi @Jon.Dean,

 

the dxf are generated by the PDM system (not by hand)
Here is the code that creates the second flat sheet next to the sheet.

 

Sub CreateFlatPatternView()
' Set a reference to the drawing document.
' This assumes a drawing document is active.
Dim oDrawDoc As DrawingDocument
Set oDrawDoc = ThisApplication.ActiveDocument
'Set a reference to the active sheet.
Dim oSheet As Sheet
Set oSheet = oDrawDoc.ActiveSheet
Dim tmpView As DrawingView
For Each tmpView In oSheet.DrawingViews
If tmpView.Name = "LASER" Then
MsgBox ("Ansicht LASER existiert bereits. Code wird verlassen.")
Exit Sub
End If
Next
' Create a new NameValueMap object
Dim oBaseViewOptions As NameValueMap
Set oBaseViewOptions = ThisApplication.TransientObjects.CreateNameValueMap
' Set the options to use when creating the base view.
Call oBaseViewOptions.Add("SheetMetalFoldedModel", False)
' Open the sheet metal document invisibly
Dim oModel As Document
Set oModel = oSheet.DrawingViews.Item(1).ReferencedDocumentDescriptor.ReferencedDocument 'ThisApplication.Documents.Open("C:\temp\SheetMetal.ipt", False)
' Create the placement point object.
Dim oPoint As Point2d
Set oPoint = ThisApplication.TransientGeometry.CreatePoint2d(oSheet.Width + 10, oSheet.Height / 2)
' Create a base view.
Dim oBaseView As DrawingView
Set oBaseView = oSheet.DrawingViews.AddBaseView(oModel, oPoint, 1, _
kDefaultViewOrientation, kHiddenLineRemovedDrawingViewStyle, _
, , oBaseViewOptions)
oBaseView.Name = "LASER"
End Sub

 

Ein Danke an @Dennis.Ossadnik

0 Likes
Message 10 of 12

bradeneuropeArthur
Mentor
Mentor

Hi,

 

Misunderstood.

You needed a second DRAWING VIEW next to your sheet!

No second SHEET!

 

you wrote:

is it possible to automatically create a second sheet.........

 

Good to know that it is solved

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 11 of 12

S_May
Mentor
Mentor
0 Likes
Message 12 of 12

dgreatice
Collaborator
Collaborator

or maybe.

 

create DrawingView (Folded) with new sheet Smiley Indifferent

 

Please use the ACCEPT AS SOLUTION or KUDOS button if my Idea helped you to solve the problem.

Autodesk Inventor Professional Certified 2014
0 Likes