Spire.DataExport for .NET is a 100% pure data .NET library suit for exporting data into MS Word, Excel, RTF, Access, PDF, XPS, HTML, XML, Text, CSV, DBF, SYLK, SQL Script, DIF, Clipboard, etc.

Mon Dec 18, 2006 9:34 pm

i have a detailed list view and i want it to be the source of the data to be exported to PDF,HTML,XLS,TXT
any help

Ahmed3D
 
Posts: 2
Joined: Mon Dec 18, 2006 9:31 pm

Mon Dec 18, 2006 9:56 pm

i think i found the solution

Code: Select all
PDFExport pdfex = new PDFExport();
                pdfex.DataSource = Spire.DataExport.Common.ExportSource.ListView;
                pdfex.ListView = LV;
                pdfex.FileName = TB_Name_PDF.Text;
                pdfex.SaveToFile();


but the following error message occures
Code: Select all
Could not load file or assembly 'Spire.DataExport.ResourceMgr, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.

Ahmed3D
 
Posts: 2
Joined: Mon Dec 18, 2006 9:31 pm

Fri Dec 22, 2006 2:44 am

Make sure the Spire.DataExport.ResourceMgr.dll file in your program runtime directory.
Technical Support
Spire.DataExport Team

support@e-iceblue.com

DataExport
 
Posts: 35
Joined: Thu Jun 29, 2006 2:29 pm

Return to Spire.DataExport