Hi Vickey,
I did try the suggestions mentioned in the posts about display Alerts as None, but still no luck.
My code is as below, can you suggest please.
LetterDocPath = sGetINI(sINIFile, "DirectoryPaths", "CWC_LETER_DOC_PATH", "")
Set LetterTemplate = Word.Documents.Open(LetterDocPath)
Application.DisplayAlerts = wdAlertsNone
On Error Resume Next
With ActiveDocument
.Bookmarks("CustomerName").Range.Text = tbCustName
If obBillingAddress = True Then
.Bookmarks("MailingAddress").Range.Text = tbBillingAddress
ElseIf obPropertyAddress = True Then
.Bookmarks("MailingAddress").Range.Text = tbPropertyAddress
End If
If fs.FileExists(strFile) Then
Call InsertSuggestedText
End If
strOurreference = tbRefNoValue
strtitle = Strings.UCase(tbLetterTitle)
FilePath = tbFilePath.Text
' If MsgBox("Clicking Ok will enable you to proceed with the saved letter", vbOKCancel) = vbOK Then
Call SaveDocument(strOurreference, strtitle, FilePath)
'Unload Me
Me.Hide
' Else
' End If
End If