Greetings:
When I convert a doc file to pdf the two side by side tables are wrapping causing the form to shift to a second page.
Here is the code I'm using:
Document doc = new Document(@"C:\SymBTemp~\waterbill3.doc");
MemoryStream pdfStream = new MemoryStream();
doc.Save(pdfStream, SaveFormat.AsposePdf);
Aspose.Pdf.Pdf pdf = new Aspose.Pdf.Pdf();
pdf.BindXML(pdfStream, null);
pdf.Save(@"C:\SymBTemp~\Text2.pdf");
attached is the doc file
pls advise
thx!!
Dave Wilson