VB Lecture Notes - Writing a Program

Essential Question: How do you create and execute a Hello World program?
Objective #1:
Memorize this modified version of a Hello World program.

' John Doe

Public Class Form1

   Private Sub Form1_Load()

      MessageBox.Show("Hello World")
   End Sub

End Class


Some necessary code was removed from the complete version of this program to make it easier to memorize. This program will not execute correctly if typed without the additional code.

Objective #2: List and describe the 3 steps for writing a Visual Basic project.

Objective #3: Write, run, save, print, and modify a Visual Basic project.

Objective #4: Identify compile errors, run-time errors, and logic errors.

Objective #5: Define design time, run time, and break time.