' Mr. Minich
' Period 1
' Ch1Demo5
' 9/14/2000
' Purpose - This program demonstrates the use of string variables

Option Explicit

Private Sub Form_Activate()
   ' displays hello world message

   Dim strPhrase As String ' phrase to be displayed
   Dim strGreeting As String ' greeting to be displayed

   strGreeting = "hello"
   strPhrase = "world"
   Form1.Print strGreeting & " ";
   Form1.Print strPhrase
End Sub