J
John
I am using bookmarks in a Word Doc to place information from Access using
this routine:
InsertTextAtBookmark WordApp, WordDoc, "EventDetails", strEventDetails & ""
where typically strEventDetails is something like this:
strEventDetails = rec("ShowTitle") & Chr(11) & rec("VenueName")
I would like to tag the two parts of this string each with different
formatting information relating to font name and boldness. For various
reasons I cannot insert the two parts using separate bookmarks (which would
enable me to format within the Word Doc) so I would like to 'send' the
formating information to the doc.
Is this possible? Many thanks in anticipation
this routine:
InsertTextAtBookmark WordApp, WordDoc, "EventDetails", strEventDetails & ""
where typically strEventDetails is something like this:
strEventDetails = rec("ShowTitle") & Chr(11) & rec("VenueName")
I would like to tag the two parts of this string each with different
formatting information relating to font name and boldness. For various
reasons I cannot insert the two parts using separate bookmarks (which would
enable me to format within the Word Doc) so I would like to 'send' the
formating information to the doc.
Is this possible? Many thanks in anticipation