PakemaContributor14 years ago[VBScript, TC 7.52] How to go to next iteration in loop "For...Next"People, HelpCodeSub LoopExampleDim IFor I = 0 To 10IF I = 3 Then Continue NextEnd Sub ' LoopExampleIn line "IF I = 3 Then Continue " I have Error Question: What I must write instead of it?VBScript, TC 7.52Thanks
1 ReplyReplies sorted by Most LikedPakemaContributor14 years agoI have just resolve problemSub LoopExampleDim I, KFor I = 0 To 10For K = 1 To 1IF I = 3 Then Exit For ' imitation of Continue NextNextEnd Sub ' LoopExample
PakemaContributor14 years agoI have just resolve problemSub LoopExampleDim I, KFor I = 0 To 10For K = 1 To 1IF I = 3 Then Exit For ' imitation of Continue NextNextEnd Sub ' LoopExample
Recent DiscussionsAccess Form opend with a menuitemCan we set sheet name in excel as active using python scriptUnable to capture objects inside iFrames in Power App using TestComplete