Hi,
I’m trying to save .doc file into a .rtf file and i’m having some trouble. The .doc file has some images and those images are being lost in the resulting .rtf.
I’m using this code:
Dim dir As String = "C:\"
Dim doc As New Document(dir & "testeIn.doc")
doc.Save(dir & "testeOut.rtf")
Is this normal? Or am i doing something wrong?
Regards,