Set the option to save as native .DOC file using Word automaion.
Sub SaveAsDoc(newVal As Bool)
newVal
True - Output should be in .DOC format
False - Output should be in .RTF format
Please refer to the list of return exceptions.
oConverter = CreateObject("EasyConverter.PDF2Word.3")
' Set the option to save as native .DOC file using Word automaion
oConverter.SaveAsDoc = True
Call oConverter.ConvertToWord(inFileName, outFileName)