M
Mike T.
I have a Word 2003 template that I strip all of the FormField values
off of using code such as:
strCurrentResult = objWord.ActiveDocument.FormFields(CStr(InArrFields
(lngCurrentArrayPosition))).Result
This works fine. Since I pass in an array of field names. I evaluate
the strCurrentResult variable for things like parenthesis because they
need slashes in front of them to work correctly with a printer (e.g. "\
(" ). One item that recently was identified was the bullets not being
printed. The obvious explanation is that I'm not identifying them when
parsing. Is there a way to identify whether the variable contains a
bullet (the default one Word 2003 uses)? I have tried to identify for
AscW(8226) (Unicode bullet) but that doesn't seem to work.
off of using code such as:
strCurrentResult = objWord.ActiveDocument.FormFields(CStr(InArrFields
(lngCurrentArrayPosition))).Result
This works fine. Since I pass in an array of field names. I evaluate
the strCurrentResult variable for things like parenthesis because they
need slashes in front of them to work correctly with a printer (e.g. "\
(" ). One item that recently was identified was the bullets not being
printed. The obvious explanation is that I'm not identifying them when
parsing. Is there a way to identify whether the variable contains a
bullet (the default one Word 2003 uses)? I have tried to identify for
AscW(8226) (Unicode bullet) but that doesn't seem to work.