A loop will repeat a block of computer code a number of times. Counted loops, or For Loops allow you to repeat a block of code a fixed number of times.
Dim intCounter as IntegerFor intCounter = 1 to 10 'Some code hereNext intCounterDim intCounter as IntegerFor intCounter = 1 to 100 Step 5 'Some code hereNext intCounterDim intCounter as IntegerFor intCounter = 10 to 0 Step -2 'Some code hereNext intCounter