Click here to Skip to main content
15,889,116 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
I need to show pdf out put as preview before save to a location. But not need to show things like print dialog, print setting etc. How can i show preview after converting excel file to PDF as stream?

Aspose.Cells.Workbook workbook = new Aspose.Cells.Workbook(inputExcelFilePath);
System.IO.MemoryStream stream=new System.IO.MemoryStream();
workbook.Save(stream, Aspose.Cells.SaveFormat.Pdf);


Here i convert excel to pdf and save to stream, From this stream i need to show preview.
Posted
Comments
Marc Gabrie 15-Jun-14 9:47am    
CP is not for providing third-party tools support so go and contact them directly ;-)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900