10-23-2022, 04:48 PM
That _Continue is really great. Checked the wiki and Select Case seemed to be missing so I tried it
Print
Print
For x = 1 To 10
Select Case x
Case 1
Print x;
Case 2
_Continue
Case 3
Print x;
Case 4
Print x;
Case 5
_Continue
Case 6
Print x;
Case 7
Print x;
Case 8
_Continue
Case 9
Print x;
Case 10
Print x;
End Select
Next
And it works in Select Case as well. And now that it has been brought to my attention, I think I may have either asked this question before or was reading something similar at the old site. I think I do have an old routine where I used _Continue in a Select Case algorythm. Anyway appreciate your help once again.
For x = 1 To 10
Select Case x
Case 1
Print x;
Case 2
_Continue
Case 3
Print x;
Case 4
Print x;
Case 5
_Continue
Case 6
Print x;
Case 7
Print x;
Case 8
_Continue
Case 9
Print x;
Case 10
Print x;
End Select
Next
And it works in Select Case as well. And now that it has been brought to my attention, I think I may have either asked this question before or was reading something similar at the old site. I think I do have an old routine where I used _Continue in a Select Case algorythm. Anyway appreciate your help once again.