Hi
I have a Word template, and when I convert it to PDF, the PDF does not look the same as the word doc.
Some of the wording that was near the bottom part of the Word doc, has been put on the second page of the PDF doc.
I use version 3.7.5.3 of Spire.doc with the following code:
Imports Spire.Doc
Imports Spire.Doc.Documents
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Spire.License.LicenseProvider.SetLicenseFileName("license.elic.xml")
Dim wordDocument As New Document("C:\\Test.doc", FileFormat.Doc)
wordDocument.SaveToFile("C:\\Test.pdf", FileFormat.PDF)
End Sub
End Class
Any Ideas??