I am using Access to create a word document. It is something that I have done in the past, but this has a twist.
Code:
Dim objWord As Object
Set objWord = New Word.Application
objWord.Documents.Add
objWord.Visible = True
With objWord.Selection
.....
.Font.Size = 12
.TypeText "Please find the enclosed Summary Report which details the aggregate score for each section of all records reviewed. The final score of all of your records reviewed was " & Score
.Font.Bold = True
.TypeText (Score)
.Font.Bold = False
The first "Score" displays, but it sould be in Bold. The bold tag works because as soon as I start typing in the document where the cursor is, its in bold. I have tried
Code:
.TypeText Score
Code:
.TypeText
thoughts?