.
                         CONTROLS
                         ========
.
Easy:
CONTROLS are the things you put on FORMS. The buttons you
 click on, the textboxes you read and enter strings into,
 the list boxes you scan through looking for the right MONTH
 to enter. Minesweeper is a one form project, but, the mines
 you clik on to play the game, the buttons, etc etc... all of
 these are CONTROLS owned by the single FORM in minesweeper.
.
TECH:
CONTROLS are OBJECTS owned by FORMS.
PROJECT owns all the FORM(s), and each FORM owns the
 individual CONTROLS on that FORM.
.
The OBJECT NAME reflects this situation. form1.button1, and
 form1.button2 and both owned by form1. form1 is in turn owned by project9.
.
In a one form project9, the following three lines are the
 same:
      button1.text=SomeStringHere
      form1.button1.text=SomeStringHere
      project9.form1.button1.text=SomeStringHere
.
NOTE that in a multiple form-ed project, *IF* button1
 *ONLY* existed on a single form, and there was no other
 button1 on any other form, you *could* still say
 'button1.text=SomeStringHere'.
