Creating a Automatic Opening Comment in a Form

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

Guest

Hello,

I have created a form that will be filled out by various people online and
then printed for signature and mailed in. I want to add a statement that
tell users that if at any time during filling out the form they have
questions, they can contact a certain person. Is there a way to add this
comment as a pop-up, or something that will automatically show everytime the
form is opened?

The form is password protected with form fields. Thank you for your
anticipated assistance!
 
Sure -

That's called a message box that is triggered by the On Open event.

Sub Document_Open()
Msgbox "If you need further help, please call Stacia @ x771",,"More
Help"
End Sub

--
Dawn Crosier
Microsoft MVP
"Education Lasts a Lifetime"
This message is posted to a newsgroup. Please post replies and questions
to the newsgroup so that others can learn as well.




Hello,

I have created a form that will be filled out by various people online and
then printed for signature and mailed in. I want to add a statement that
tell users that if at any time during filling out the form they have
questions, they can contact a certain person. Is there a way to add this
comment as a pop-up, or something that will automatically show everytime the
form is opened?

The form is password protected with form fields. Thank you for your
anticipated assistance!

No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.488 / Virus Database: 269.14.8/1063 - Release Date: 10/11/2007 9:11 AM

No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.488 / Virus Database: 269.14.8/1063 - Release Date:
10/11/2007 9:11 AM
 
Back
Top