.

Your Products have been synced, click here to refresh
The CANCEL in the execution box isn't the same thing.
You CAN keep them from ignoring (canceling) that using CODE. Easiest way off the top of my head is to use numeric values as inputs (and clear previous instances in a setup menu). Such as:
1) YES
2) NO
And then put a label BEFORE the input and IF/GOTO after so that if they don't enter a valid number, it just keeps looping through that comment/input
here is an example I did for a part that may or may not have nuts put in it:
L1 =LABEL/ C1 =COMMENT/INPUT,NO,'1 = NUTS ,2 = NO NUTS' ASSIGN/V1 = C1.INPUT IF_GOTO/V1<1,GOTO = L1 IF_GOTO/V1>2,GOTO = L1
If a number less than 1 is entered or a number greater than 2, it loops back to label L1 and asks again.
(later in the program I use the value to branch for nuts or no-nuts)
The CANCEL in the execution box isn't the same thing.
You CAN keep them from ignoring (canceling) that using CODE. Easiest way off the top of my head is to use numeric values as inputs (and clear previous instances in a setup menu). Such as:
1) YES
2) NO
And then put a label BEFORE the input and IF/GOTO after so that if they don't enter a valid number, it just keeps looping through that comment/input
here is an example I did for a part that may or may not have nuts put in it:
L1 =LABEL/ C1 =COMMENT/INPUT,NO,'1 = NUTS ,2 = NO NUTS' ASSIGN/V1 = C1.INPUT IF_GOTO/V1<1,GOTO = L1 IF_GOTO/V1>2,GOTO = L1
If a number less than 1 is entered or a number greater than 2, it loops back to label L1 and asks again.
(later in the program I use the value to branch for nuts or no-nuts)
© 2025 Hexagon AB and/or its subsidiaries. | Privacy Policy | Cloud Services Agreement |