Visual Basic Tutorial by DrNo. Cycles:

We will assume, for this tutorial that you are somewhat familiarized with the following concepts:
Data types (integer numbers, character strings, etc)
Visual Basic code´s structures (Subs, Functions, etc)
If...End If block, and other general processing structures.

What are cycles? They are instructions or blocks of instructions that repeat an amount of times to do a same task more than once.

Within this type of instructions, we find 3 variations:

For...Next
Do...Loop
While...Wend

In this tutorial, we´ll be seeing them 3.

Alright, let´s go to Chapter #1: For...Next