NoProofing a formfield using VBA

M

Micheline

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
 
G

Guest

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
 

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