View Single Post
  #3  
Old August 10th, 2004, 01:44 PM
external usenet poster
 
Posts: n/a
Default NoProofing a formfield using VBA

Yes you are right, but in designing forms, I have them
set-up that the users can spellcheck the content of the
formfield,therefore I have made the formfield English
Canada, then once the data is exported to Oracle, I
disable the formfield against change,
ActiveDocument.FormFields("Text1").Enabled = False
that's why I need the formfield to become noproofing.

Thanks.
Micheline

-----Original Message-----
Aren't form fields formatted as NoProofing by default?

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups

to the newsgroup so
all may benefit.

"Micheline" wrote

in message
...
Hello,
I was wondering if it is possible to set a formfield
to NoProofing = true.
for example similar to:
ActiveDocument.Styles("theformfield").NoProofing =

True ,
by identifying the bookmark name.

Presently, I use:
Selection.GoTo What:=wdGoToBookmark, Name:="Text1"
Selection.NoProofing = True

I would like to set the formfield without going to the
bookmark.

Is this possible ?

Thanks .
Micheline


.