Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
John John is offline
external usenet poster
 
Posts: 307
Default Editing the Fill-in form field

I am using Microsoft Office Word 2007
File version: 12.0.6504.5000

I am working on cratig a form that can be filled out in an email message. I
want to create a fill-in field that will display the phone number as shown
below:
(125) 124-1258. When the person enters the number they'd enter it as
1251241258. This means that the fill-in field should automaticly update
itself after the user clicks after typing in the number in the promt dialog
box. How can I make this happen?
--
John R. L.
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
Default Editing the Fill-in form field

You had better ask this in a programming newsgroup such as
microsoft.public.word.vba.general.

--
Stefan Blom
Microsoft Word MVP




"John" wrote:

I am using Microsoft Office Word 2007
File version: 12.0.6504.5000

I am working on cratig a form that can be filled out in an email message. I
want to create a fill-in field that will display the phone number as shown
below:
(125) 124-1258. When the person enters the number they'd enter it as
1251241258. This means that the fill-in field should automaticly update
itself after the user clicks after typing in the number in the promt dialog
box. How can I make this happen?
--
John R. L.

  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Editing the Fill-in form field

To do this with a FILLIN field use the following field construction

{ = { FILLIN "Enter the Phone Number" } \# "(###) ###'-'####" }

You must use Ctrl+F9 to insert each pair of Field Delimiters { } and you
use Alt+F9 to toggle off their display.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"John" wrote in message
...
I am using Microsoft Office Word 2007
File version: 12.0.6504.5000

I am working on cratig a form that can be filled out in an email message.
I
want to create a fill-in field that will display the phone number as shown
below:
(125) 124-1258. When the person enters the number they'd enter it as
1251241258. This means that the fill-in field should automaticly update
itself after the user clicks after typing in the number in the promt
dialog
box. How can I make this happen?
--
John R. L.


  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Editing the Fill-in form field

It would also work with a quote field
{ Quote { FILLIN "Enter the Phone Number" } \# "(###) ###'-'####" }
but should work with the switch inside the fillin field alone
{ FILLIN "Enter the Phone Number" \# "(###) ###'-'####" }

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Doug Robbins - Word MVP wrote:
To do this with a FILLIN field use the following field construction

{ = { FILLIN "Enter the Phone Number" } \# "(###) ###'-'####" }

You must use Ctrl+F9 to insert each pair of Field Delimiters { } and
you use Alt+F9 to toggle off their display.


Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"John" wrote in message
...
I am using Microsoft Office Word 2007
File version: 12.0.6504.5000

I am working on cratig a form that can be filled out in an email
message. I
want to create a fill-in field that will display the phone number as
shown below:
(125) 124-1258. When the person enters the number they'd enter it as
1251241258. This means that the fill-in field should automaticly
update itself after the user clicks after typing in the number in
the promt dialog
box. How can I make this happen?
--
John R. L.



  #5   Report Post  
Posted to microsoft.public.word.docmanagement
John John is offline
external usenet poster
 
Posts: 307
Default Editing the Fill-in form field

I tried to copy & paste the code you provided into the FillIN field code area
but I kept getting "syntex error {}" in the grey field area. Why is this
happening?
--
John R. L.


"Graham Mayor" wrote:

It would also work with a quote field
{ Quote { FILLIN "Enter the Phone Number" } \# "(###) ###'-'####" }
but should work with the switch inside the fillin field alone
{ FILLIN "Enter the Phone Number" \# "(###) ###'-'####" }

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Doug Robbins - Word MVP wrote:
To do this with a FILLIN field use the following field construction

{ = { FILLIN "Enter the Phone Number" } \# "(###) ###'-'####" }

You must use Ctrl+F9 to insert each pair of Field Delimiters { } and
you use Alt+F9 to toggle off their display.


Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"John" wrote in message
...
I am using Microsoft Office Word 2007
File version: 12.0.6504.5000

I am working on cratig a form that can be filled out in an email
message. I
want to create a fill-in field that will display the phone number as
shown below:
(125) 124-1258. When the person enters the number they'd enter it as
1251241258. This means that the fill-in field should automaticly
update itself after the user clicks after typing in the number in
the promt dialog
box. How can I make this happen?
--
John R. L.






  #6   Report Post  
Posted to microsoft.public.word.docmanagement
John John is offline
external usenet poster
 
Posts: 307
Default Editing the Fill-in form field

Can you please tell me what to do step-by-step. I tried to copy & paste the
code into the code area but all I got was "Syntex error {}" What am I doing
wrong?
--
John R. L.


"Doug Robbins - Word MVP" wrote:

To do this with a FILLIN field use the following field construction

{ = { FILLIN "Enter the Phone Number" } \# "(###) ###'-'####" }

You must use Ctrl+F9 to insert each pair of Field Delimiters { } and you
use Alt+F9 to toggle off their display.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"John" wrote in message
...
I am using Microsoft Office Word 2007
File version: 12.0.6504.5000

I am working on cratig a form that can be filled out in an email message.
I
want to create a fill-in field that will display the phone number as shown
below:
(125) 124-1258. When the person enters the number they'd enter it as
1251241258. This means that the fill-in field should automaticly update
itself after the user clicks after typing in the number in the promt
dialog
box. How can I make this happen?
--
John R. L.



  #7   Report Post  
Posted to microsoft.public.word.docmanagement
John John is offline
external usenet poster
 
Posts: 307
Default Editing the Fill-in form field

I'm not that skilled to understand programming stuff too well. I was hoping
to find some step-by-step instructions on how to do this or maybe even a
template that I could download that has this type of fill in field set up
already so I could just copy it over to my current form.
--
John R. L.


"Stefan Blom" wrote:

You had better ask this in a programming newsgroup such as
microsoft.public.word.vba.general.

--
Stefan Blom
Microsoft Word MVP




"John" wrote:

I am using Microsoft Office Word 2007
File version: 12.0.6504.5000

I am working on cratig a form that can be filled out in an email message. I
want to create a fill-in field that will display the phone number as shown
below:
(125) 124-1258. When the person enters the number they'd enter it as
1251241258. This means that the fill-in field should automaticly update
itself after the user clicks after typing in the number in the promt dialog
box. How can I make this happen?
--
John R. L.

  #8   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Editing the Fill-in form field

You cannot paste fields from a text editor such as this. The field
boundaries {} must be inserted with CTRL+F9 hence the error message. You can
either select the relevant parts then press CTRL+F9 then delete the text
brackets {} or type the lot using CTRL+F9 for each bracket pair.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



John wrote:
I tried to copy & paste the code you provided into the FillIN field
code area but I kept getting "syntex error {}" in the grey field
area. Why is this happening?

It would also work with a quote field
{ Quote { FILLIN "Enter the Phone Number" } \# "(###)
###'-'####" } but should work with the switch inside the fillin
field alone { FILLIN "Enter the Phone Number" \# "(###)
###'-'####" }

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Doug Robbins - Word MVP wrote:
To do this with a FILLIN field use the following field construction

{ = { FILLIN "Enter the Phone Number" } \# "(###) ###'-'####" }

You must use Ctrl+F9 to insert each pair of Field Delimiters { }
and you use Alt+F9 to toggle off their display.


Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"John" wrote in message
...
I am using Microsoft Office Word 2007
File version: 12.0.6504.5000

I am working on cratig a form that can be filled out in an email
message. I
want to create a fill-in field that will display the phone number
as shown below:
(125) 124-1258. When the person enters the number they'd enter it
as 1251241258. This means that the fill-in field should automaticly
update itself after the user clicks after typing in the number in
the promt dialog
box. How can I make this happen?
--
John R. L.



  #9   Report Post  
Posted to microsoft.public.word.docmanagement
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Editing the Fill-in form field

As I said, you must use Ctrl+F9 to insert each pair of Field Delimiters { }
and you
use Alt+F9 to toggle off their display.


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"John" wrote in message
news
Can you please tell me what to do step-by-step. I tried to copy & paste
the
code into the code area but all I got was "Syntex error {}" What am I
doing
wrong?
--
John R. L.


"Doug Robbins - Word MVP" wrote:

To do this with a FILLIN field use the following field construction

{ = { FILLIN "Enter the Phone Number" } \# "(###) ###'-'####" }

You must use Ctrl+F9 to insert each pair of Field Delimiters { } and you
use Alt+F9 to toggle off their display.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"John" wrote in message
...
I am using Microsoft Office Word 2007
File version: 12.0.6504.5000

I am working on cratig a form that can be filled out in an email
message.
I
want to create a fill-in field that will display the phone number as
shown
below:
(125) 124-1258. When the person enters the number they'd enter it as
1251241258. This means that the fill-in field should automaticly update
itself after the user clicks after typing in the number in the promt
dialog
box. How can I make this happen?
--
John R. L.




  #10   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
Default Editing the Fill-in form field

Using fields, as suggested by Doug and Graham, should be easier.

--
Stefan Blom
Microsoft Word MVP



"John" wrote in message
...
I'm not that skilled to understand programming stuff too well. I was
hoping
to find some step-by-step instructions on how to do this or maybe even a
template that I could download that has this type of fill in field set up
already so I could just copy it over to my current form.
--
John R. L.


"Stefan Blom" wrote:

You had better ask this in a programming newsgroup such as
microsoft.public.word.vba.general.

--
Stefan Blom
Microsoft Word MVP




"John" wrote:

I am using Microsoft Office Word 2007
File version: 12.0.6504.5000

I am working on cratig a form that can be filled out in an email
message. I
want to create a fill-in field that will display the phone number as
shown
below:
(125) 124-1258. When the person enters the number they'd enter it as
1251241258. This means that the fill-in field should automaticly update
itself after the user clicks after typing in the number in the promt
dialog
box. How can I make this happen?
--
John R. L.






Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Form field fill-ins MB2 Microsoft Word Help 5 January 13th 09 10:43 PM
Form Fill-In with Editing Restrictions PAR Microsoft Word Help 1 July 9th 08 05:35 PM
forms - editing within a form field Jayne Microsoft Word Help 5 May 27th 08 03:01 AM
Editing Form Field Contents jbc Page Layout 1 March 20th 07 07:00 PM
Editing a field within a form document Linda Microsoft Word Help 1 October 5th 06 11:13 PM


All times are GMT +1. The time now is 07:50 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"