' Mr. Minich
' Period 1
' Ch1Demo3
' 9/14/2000
' Purpose - This program demonstrates the use of a string variable

Option Explicit

Private Sub Form_Activate()
   ' displays hello world message

   Dim strPhrase As String ' phrase to be displayed

   strPhrase = "hello world"
   Form1.Print strPhrase
End Sub