Pop-up help on selected fields in a form

G

Guest

I need to have the capability of having a pop-up or some type of help message
to explain various fields in a protected form document. Hyperlinks do not
work once you protect the form to allow the form boxes to work.
 
G

Graham Mayor

You can either add help text to the form field definition, which will be
displayed in the Word status bar, or you can add a pop-up message run from a
macro on entry to the field. The best bet would be the former with an
autonew macro in the form template to pop up a box referring users to the
status bar.

That macro might be something like

Sub AutoNew()
Set Balloon = Assistant.NewBalloon
With Balloon
.Text = "Refer to status line at bottom of screen for field entry
details"
.Button = msoButtonSetOK
.Animation = msoAnimationBeginSpeaking
.Show
End With
End Sub

or without the help assistant

Sub AutoNew()
MsgBox "Refer to status line at bottom of screen for field entry details", _
vbInformation
End Sub

See http://www.gmayor.com/installing_macro.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top