Back to Browse

For Do Loop - Fixed Iteration in VB.net

2.5K views
Apr 16, 2017
10:25

In this tutorial we will be looking at the Fixed Iteration of the For-Do-Loop. This loop is designed to run for a fixed duration specified by the developer or the end user. The structure is: For i = iStart To iStop Step iStep Next i We also look at the loop terminators if required and the start, stop and step of the loop. Skipping a cycle: If i = 5 Or i = 9 Then Continue For this will skip cycle 5 and 9 however each cycle of the loop requires a conditional test and is not efficent but sometimes necessary.

Download

1 formats

Video Formats

360pmp414.6 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

For Do Loop - Fixed Iteration in VB.net | NatokHD