Formatting Status Bar Help on Forms

  • Thread starter Thread starter Allison Orange
  • Start date Start date
A

Allison Orange

When creating a form, is it possible to have the status bar help for a field
appear in a particular color, in order to draw a user's attention to it? I
have tried formatting the auto text in that way, but when the text is
displayed in the status bar, it still appears in black text.

Thanks in advance,
Allison Orange
Systems Project Consultant
Florida Public Service Commission
(e-mail address removed)
 
Hi Allison,
When creating a form, is it possible to have the status bar help for a field
appear in a particular color, in order to draw a user's attention to it?
No, there's no functionality for that in Word. Too bad, really...

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 8 2004)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or
reply in the newsgroup and not by e-mail :-)
 
If you wanted to ensure that some important point was not missed, you could
use a message box popped up from an on entry macro, which the user would
have to acknowledge before proceeding. This might get a bit annoying after a
while, but it wouldn't be overlooked :) You could equally use an autonew
macro in the form template to pop up a message to remind the user to pay
attention to the status bar eg

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


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top