Bookmarks and Objects

G

GGGGWWWW

The 'Text Form Field' is not an object to VBA and I can't
get the value from it. I read some information in this
forum and it seems that they had some success with macro.
I am not familiar with macro or how to get value from the
field to manipulate with it.

Can you please show me the way.

Thanks in advance
 
H

Helmut Weber

Hi * (a real name would be more polite),
how about that:
Sub Makro3()
Dim oF As FormField
For Each oF In ActiveDocument.FormFields
MsgBox oF.Result
Next
End Sub
Greetings from Bavaria, Germany
Helmut Weber
"red.sys" & chr$(64) & "t-online.de"
Word 97, NT4.0
 
W

Word Heretic

G'day "GGGGWWWW" <[email protected]>,

..FormFields


GGGGWWWW said:
The 'Text Form Field' is not an object to VBA and I can't
get the value from it. I read some information in this
forum and it seems that they had some success with macro.
I am not familiar with macro or how to get value from the
field to manipulate with it.

Can you please show me the way.

Thanks in advance

Steve Hudson

Word Heretic, Sydney, Australia
Tricky stuff with Word or words for you.
Email [email protected]
Products http://www.geocities.com/word_heretic/products.html

Replies offlist may require payment.
 
Top