Hello,
Please could you help on conversion word document to .doc.
The images the images are slack.
Just open the file .doc and save it as .doc
Aspose version = 17.6
I use the code below
Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click
Dim dataDirIn As String = ""
Dim dataDirOut As String = ""
Dim wordlicense = New Aspose.Words.License()
wordlicense.SetLicense(dataDir & "Aspose.Total.lic")
dataDirIn = "DocFile.doc"
dataDirOut = dataDirIn & ".doc"
Dim doc As New Aspose.Words.Document(dataDirIn)
doc.Save(dataDirOut)
End Sub
Thank you in advance for your support