Pls, is it possible for aspose products to convert a word document to an excel sheet accurately. Can you point me to some vb.net or c# examples so i can build on in this regard.
Thanks for your response, I will look this up immediately.
I have tried the ConvertDoc2Xls class and it just converts the entire document into 1 column, it does not recognise tables. If you check the pdf file i sent, it contains tables with many rows and columns, if i wanted to convert something like that to excel, how would it be possible. You can use the same pdf file to try out the conversion to word and excel
Hi Lanre,
<span lang=“EN-GB” style=“font-family:“Courier New”;mso-ansi-language:EN-GB;mso-no-proof:yes”>Aspose.Pdf.Document pdf = new
Aspose.Pdf.Document(MyDir + “Schedules.pdf”);<o:p></o:p>
// create DocSaveOptions object
DocSaveOptions saveOptions = new DocSaveOptions();
// set the recognition mode as Flow
saveOptions.Mode = DocSaveOptions.RecognitionMode.Flow;
// set the Horizontal proximity as 2.5
saveOptions.RelativeHorizontalProximity = 2.5f;
// enable the value to recognize bullets during conversion process
saveOptions.RecognizeBullets = true;
pdf.Save(MyDir + "Pdf-Word.doc", saveOptions);
Hi Lanre,<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Thank you for sharing the details and template file.
I am a representative of Aspose.Pdf team. Following are the details as per your requirements:
ventis:
There are two save modes while converting the PDF document to Doc using Aspose.Pdf for .NET. You can use the above code shared by Tahir (with DocSaveOptions.RecognitionMode.Flow;) to convert the PDF to Doc to avoid textbox conversion. However, as per my testing with your template file, I am able to notice the formatting issues in the generated doc file when using Flow mode. I have registered an issue in our issue tracking system as PDFNEWNET-34327 for rectification.
Regarding PDF to Excel format conversion, I am afraid; the feature is not supported at the moment. We have a new feature request in our issue tracking system with issue id: PDFNEWNET-33541. Our development team will further analyze the feature and share their feedback.
We will notify you via this forum thread regarding any updates against the above issue.
Sorry for the inconvenience,
The issues you have found earlier (filed as PDFNEWNET-33541) have been fixed in Aspose.Pdf for .NET 8.6.0.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.
(1)