header

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Simple question:
How do you change the title in the upper left corner of each form..??

I know how to change a message box in the module code.
Like: MsgBox "Invalid password. Try again or " & _
"change password.", vbCritical, _
"PROVIDER APPEALS DATABASE FORM"

But how can I change the forms without changing the name of the form???

Thanks
 
Simple question:
How do you change the title in the upper left corner of each form..??

I know how to change a message box in the module code.
Like: MsgBox "Invalid password. Try again or " & _
"change password.", vbCritical, _
"PROVIDER APPEALS DATABASE FORM"

But how can I change the forms without changing the name of the form???

Thanks

Change the Form's Caption property.
Me.Caption = "this is the new one."
 
Back
Top