Message 1 of 4
Not applicable
10-04-2019
03:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I am designing a ladder and I want the maximum number of steps to be 16.
User only provides the height, and the parameters create the number of steps.
So if the user provides a height that needs more than 16 steps there is a pop up message that informs the user that needs to give sorter height and at that point I want my model not to update and have the last working dimensions.
I was thinking maybe something like the break command (C++)?
I have also tried to loop the height so I can provide the closest dim to 16 steps but software seems to stop working.
Any thoughts?
If step_final > 17 Then MessageBox.Show("Steps must be less than 16, Please place a landing", "TECHNICAL SPECIFICATIONS") Do Heigth = Heigth - 100 Loop Until n_final < 17 End If
Solved! Go to Solution.