Form_Load

In Form PicForm

  55 Private Sub Form_Load()
  56 ' As the form loads, _
  57   show the program title in the form caption
  58 
  59 Me.Caption = ProgramTitle ' Global variable access
  60 
  61 End Sub
  62 
  63