Community
Inventor Forum
Welcome to Autodesk’s Inventor Forums. Share your knowledge, ask questions, and explore popular Inventor topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Selecting Sheet Size when starting a new drawing

8 REPLIES 8
SOLVED
Reply
Message 1 of 9
Edward_Lowe
2655 Views, 8 Replies

Selecting Sheet Size when starting a new drawing

Good Morning All,

 

I wonder if anyone can help me.  I'm trying to set up a company drawing sheet that requires the designer to select the sheet size before starting the drawing.  Based on the drawing sheet size (A0, A1, A2, A3 & A4 all in landscape) the relevant company Title block will attach to the bottom right of the drawing border.  I've manage to create the relevant forms for parts, sheet metal and assemblies.  This one has beaten me so far.

 

Thanks in advance for any assistance,

 

Regards,

 

Edward

Inventor 2014

Windows 7 - 64 Bit

8 REPLIES 8
Message 2 of 9
CCarreiras
in reply to: Edward_Lowe

Hi!

 

I think it's not possible, because it depends the template definitions.


What you may do is create templates with the different sizes and if you wish, put them in a custom folder inside the templates folder to find it easily.

 

Regards.

 

 Mark Solutions!.Did you find this reply helpful ? If so, use the  Accept as Solution or Kudos button - Thank you!

CCarreiras

EESignature

Message 3 of 9
Edward_Lowe
in reply to: CCarreiras

Thanks Carlos.

 

I've seen another thread that asks the same question, albeit in Inventor 2012.  It appeared noboby could get it to work without error codes popping up.

 

I will follow your advice,

 

Regards,

 

Edward

Message 4 of 9
eljoseppo
in reply to: CCarreiras

you can also add a iLogic rule in your Template which is trigged when New document is open:

 

MultiValue.SetList("SSize", "A0", "A1", "A2", "A3", "A4")
SSize = InputListBox("Choose Your Size", MultiValue.List("SSize"), SSize, Title := "Paper select", ListName := "Available Size")
ActiveSheet.ChangeSize(SSize, MoveBorderItems := True)

 U must add a SSize text parameter before, I don't know how to create it..

Message 5 of 9
eljoseppo
in reply to: eljoseppo

And if you want to insert different Title block:

MultiValue.SetList("SSize", "A0", "A1", "A2", "A3", "A4")
SSize = InputListBox("Choose Your Size", MultiValue.List("SSize"), SSize, Title := "Paper select", ListName := "List")
ActiveSheet.ChangeSize(SSize, MoveBorderItems := True)
Select Case SSize
Case "A0"
ActiveSheet.TitleBlock = "Title block A0"
Case "A1"
ActiveSheet.TitleBlock = "Title block A1"
Case "A2"
ActiveSheet.TitleBlock = "Title block A2"
Case "A3"
ActiveSheet.TitleBlock = "Title block A3"
Case "A4"
ActiveSheet.TitleBlock = "Title block A4"
End Select

 Ofcourse you have to define them in the template first.

Message 6 of 9
Edward_Lowe
in reply to: eljoseppo

Thanks eljoseppo.  I have managed to get the ilogic to work.  The only problem is this JIT debugging error warning pops up ever time I start a new drawing.  Have you come across this?  Do you know how to resolve the issue?

 

Regards,

 

Edward

Message 7 of 9
eljoseppo
in reply to: Edward_Lowe

Glad that u use iLogic. Never heard of such error.

 

Put some PrtScn.

 

I wrote this in Notepad, not tested. WYSIWIG 🙂

Message 8 of 9
eljoseppo
in reply to: Edward_Lowe

Put some PrintScreens so I can see what is your problem.

 

BR

Joseph

Message 9 of 9
Edward_Lowe
in reply to: Edward_Lowe

Jit Debug

 

Sorry for the delay.  Here is an image of the error message that pops up every time I start a new drawing,

 

Regards,

 

Edward

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report