Cross Section Analysis Default settings?

Cross Section Analysis Default settings?

Viktor.Lukjanow
Advocate Advocate
588 Views
2 Replies
Message 1 of 3

Cross Section Analysis Default settings?

Viktor.Lukjanow
Advocate
Advocate

 

 

Is there a way to set the default settings for cross-section analysis? i would like to set the wall thickness in the min and max fields and ideally also have the advance function active at the start.

ViktorLukjanow_0-1710425426424.png

 

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

daltonNYAW9
Advocate
Advocate
Accepted solution

@Viktor.Lukjanow 

 

I couldnt find anything on doing this with ilogic. However, you could create a rule that fills out the form with a series of tabs & arrow keys to mimic user input. 
Ex.

ThisApplication.CommandManager.ControlDefinitions("AppCrossSectionAnalysisCmd").Execute

System.Windows.Forms.SendKeys.SendWait("{LEFT}")

System.Windows.Forms.SendKeys.SendWait("{TAB}" & "{TAB}" & "{TAB}" & "{TAB}")

System.Windows.Forms.SendKeys.SendWait("{UP}")

System.Windows.Forms.SendKeys.SendWait("{TAB}" & "{TAB}")

System.Windows.Forms.SendKeys.SendWait("1 in")

System.Windows.Forms.SendKeys.SendWait("{TAB}")

System.Windows.Forms.SendKeys.SendWait("2 in")

 If you save this rule as an external rule you can add it to the "Inspect" panel next to the default Section command.

Message 3 of 3

Viktor.Lukjanow
Advocate
Advocate

THX DaltonNYAW9. This is a good solution for me.

0 Likes