Two methods to insert autotext, yet different results. Why? Code enclosed

C

charlie6067

1. First Method:
I have written several macros to insert autotext that has some words
bolded, some not, in the paragraphs. The macros are triggered from a
custom drop-down tool bar menu I had made. When this method runs, no
bolding displays when the autotext inserts via the macro.

2. Second method:
If I manually insert the autotext from the Tools menu, the text inserts
with appropriate words formatted in bold.

Why does the second method give the desired results and the first
doesn't?

Here's the code from method one at the end of this message. I recorded
a keystroke macro so maybe there's extra code in it that's messing up
the desired result? Any help will be appreciated.

Thanks,
Charlie
charlie6067

Sub VOL_DEN()
'
' InsertCoverage Macro
' Macro recorded 07/28/06 by Charlie Johnson
'
PasswordOff
Application.DisplayAutoCompleteTips = False
With AutoCorrect
.CorrectInitialCaps = True
.CorrectSentenceCaps = True
.CorrectDays = True
.CorrectCapsLock = True
.ReplaceText = True
End With
ActiveDocument.AttachedTemplate.AutoTextEntries("11. VOLUNTARY
DENTAL"). _
Insert Where:=Selection.Range
PasswordOn
End Sub
 
J

Jay Freedman

In the Insert method call, you need to include the optional RichText
parameter and set it to True:

ActiveDocument.AttachedTemplate.AutoTextEntries("11. VOLUNTARY
DENTAL"). _
Insert Where:=Selection.Range, RichText:=True

If you have other macro-related questions, please post them to one of the
microsoft.public.word.vba newsgroups. This group is high-volume and your
question might be overlooked.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
C

charlie6067

Thanks Jay for the help.
Charlie
charlie6067

Jay said:
In the Insert method call, you need to include the optional RichText
parameter and set it to True:

ActiveDocument.AttachedTemplate.AutoTextEntries("11. VOLUNTARY
DENTAL"). _
Insert Where:=Selection.Range, RichText:=True

If you have other macro-related questions, please post them to one of the
microsoft.public.word.vba newsgroups. This group is high-volume and your
question might be overlooked.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 

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