Click here to Skip to main content
15,884,629 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I'm using Excelwriter to write to excel without using Automation.

VB
Dim AnnexB3Rpt As String =  AppSettings.Get("RptAnnexB3_filepath")

Dim stream As New FileStream(AnnexB3Rpt, FileMode.OpenOrCreate)

Dim writer As New ExcelWriter(stream)

writer.BeginWrite()

      Code block

writer.EndWrite()

stream.Close()


Is there a way on how can i specify a column length ?

I'm using VB.net 2005
Posted
Comments
Maciej Los 11-Feb-13 17:29pm    
ExcelWriter - is it third party tool, class?
Aydin Homay 7-Apr-13 1:02am    
You can use office library from the .NET just take a look at this link :

http://www.codeproject.com/Articles/28795/Very-Simple-Library-to-Work-with-Excel-in-NET

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