Yes I think we are. Below is the code. There is no close method for wordApplication
Code:
Dim wordApplication As Word.Application
Dim wordDocument As Word.Document
Dim tempStoreText As String
tempStoreText = Nothing
wordApplication = New Word.Application
wordDocument = wordApplication.Documents.Open(sRtfFilePath)
wordApplication.Visible = False
wordDocument.ExportAsFixedFormat(sPDF_FilePath, Word.WdExportFormat.wdExportFormatPDF, False)
wordDocument.Close()
wordDocument = Nothing
wordApplication = Nothing
This was not a problem with Office 2013. Just started with 2016.