Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
I have a protected form that I want to set up so the text will disappear and
leave a cursor when someone clicks on it to enter text. Is this possible? If so how do I do it? |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Use default text in the form field. When the field is selected anything
typed will replace the text. If you want to clear that default text (and frankly I wouldn't bother) you would need a macro run on entry to each field containing the line ActiveDocument.FormFields("Text1").Result = "" where Text1 is the bookmark name of the field. If you need text in the field to inform the user what to enter use the field help which puts help text in the status bar and set an autonew macro in the form template to draw attention to it. Sub AutoNew() Application.DisplayStatusBar = True MsgBox "Refer to status line at bottom of screen for field entry details" _ , vbInformation, "Help" End Sub You may then find http://www.gmayor.com/formfieldmacros.htm useful. -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org Ben wrote: I have a protected form that I want to set up so the text will disappear and leave a cursor when someone clicks on it to enter text. Is this possible? If so how do I do it? |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Typing without moving text and saving original form. | Microsoft Word Help | |||
Why does cursor disappear when typing in word 2000 | Microsoft Word Help | |||
Selected text is not deleted when I begin typing | Microsoft Word Help | |||
Why does text move around when typing in created form fields? | Microsoft Word Help | |||
text moves when typing in a text form field | New Users |