Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am using iLogic to create a new drawing sheet:
dim oDoc as DrawingDocument = ThisApplication.ActiveDocument
dim oFormat as SheetFormat
try
oFormat = oDoc.SheetFormats.Item("CNC Format")
catch
MessageBox.Show("Error: CNC Format might not exist.", "iLogic")
end try
Dim newSheet As Sheet = oDoc.Sheets.AddUsingSheetFormat(oFormat) newSheet.Activate()
This worked in Inventor 2022, however recently upgraded to 2024.
The rule does not error, instead it produced an empty workspace??
If I Save and Close and reopen the document then the sheet is there like so:
I have tried Zoom All (Home)
I know the scale is wrong, could this be causing the issue?
Any help would be appreciated, thanks 🙂
Solved! Go to Solution.