Richard's Visual Basic Ch 3

========================
Visual Basic is NOT case sensitive
========================

Variable Declerations

eg001_variables (Form1.vb)
1. New Project - eg001_variables
2. Save All - choose folder

3. create TextBox
Name: txtOutput
Multiline: True
ScrollBars: Vertical
TextAlign: Center
WordWarp: True

4. create button
Name: btnShowExamples
Text: Show Examples
Code: See below

5. create button
Name: btnClear
Text: Clear
Code: lblOutput.Text = ""