export to excel

  • Thread starter Thread starter beachboy
  • Start date Start date
B

beachboy

Hello all,

any FREE solution for export data into excel file?

Thanks in advanced.
 
Are you wanting to start up Excel and write to cells? If so you can
use the Office XP Primary Interop Assemblies.

Add a reference to Microsoft.Office.Interop.Excel.dll and use the
Worksheet.Cells[row, col].Value2 property. But it is very slow!

Yuo might want to look at the new Visual Studio 2005 Tools for the
Microsoft Office System which allow server side components
 
Are you wanting to start up Excel and write to cells? If so you can
use the Office XP Primary Interop Assemblies.

Add a reference to Microsoft.Office.Interop.Excel.dll and use the
Worksheet.Cells[row, col].Value2 property. But it is very slow!

Yuo might want to look at the new Visual Studio 2005 Tools for the
Microsoft Office System which allow server side components
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top