Hi folks,
Apologies if this query is answered in a previous post, I did look, honest.
I may have been using the wrong search terms.
I'm having issues with a variable inspection program I'm writing.
I'm using something along the lines of (see below)
C100 =COMMENT/YESNO,NO,FULL SCREEN=YES,AUTO-CONTINUE=NO,
DO YOU WISH TO CHECK LIST A FEATURES
ASSIGN/V1=C100.INPUTVALUE
IF_GOTO/V1==1,GOTO = L1
IF_GOTO/V1==2,GOTO = L2
L1 =LABEL/
L2 is then further down the program where a second YESNO request is inserted so we can jump past other features that we don't want measure or report, which we click yes or no on can vary greatly dependant on the part.
My issue is that when I'm placing multiple of these (what I will call) Jumpers, I'm seeing that sometimes the Labels or the C100.inputvalue is changing automatically on ones I have already placed.
Which means I have to go back to the YESNO's in my program and manually change them back to what they were when I put them there.
So if I say that the example used above is C100, when I add a few more that original C100 changes to C101, C102, C103 etc, based on how many more I insert.
Not too much of a problem when I have two or three but more than a little frustrating when I have 12 of them.
Is there an auto index setting I'm missing?
Thanks in advance
Jason
Apologies if this query is answered in a previous post, I did look, honest.
I may have been using the wrong search terms.
I'm having issues with a variable inspection program I'm writing.
I'm using something along the lines of (see below)
C100 =COMMENT/YESNO,NO,FULL SCREEN=YES,AUTO-CONTINUE=NO,
DO YOU WISH TO CHECK LIST A FEATURES
ASSIGN/V1=C100.INPUTVALUE
IF_GOTO/V1==1,GOTO = L1
IF_GOTO/V1==2,GOTO = L2
L1 =LABEL/
L2 is then further down the program where a second YESNO request is inserted so we can jump past other features that we don't want measure or report, which we click yes or no on can vary greatly dependant on the part.
My issue is that when I'm placing multiple of these (what I will call) Jumpers, I'm seeing that sometimes the Labels or the C100.inputvalue is changing automatically on ones I have already placed.
Which means I have to go back to the YESNO's in my program and manually change them back to what they were when I put them there.
So if I say that the example used above is C100, when I add a few more that original C100 changes to C101, C102, C103 etc, based on how many more I insert.
Not too much of a problem when I have two or three but more than a little frustrating when I have 12 of them.
Is there an auto index setting I'm missing?
Thanks in advance
Jason
Comment