Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~5K People Reached
Favorite Tags

2 Posted Topics

Member Avatar for arun.gtm11

I used [C# Excel Writer ](http://www.eleriumsoft.com/Excel_NET/ExcelNET/Default.aspx) in my project to work with excel. You can use this example below to accomplish your task: ExcelWorkbook wb = new ExcelWorkbook(); wb.Worksheets.Add("sh1"); wb.Worksheets[0].Cells["A1"].Value = "text"; wb.Worksheets.Add("sh2"); wb.Worksheets[1].Cells["A1"].Value = "text"; wb.Worksheets.Add("sh3"); wb.Worksheets[2].Cells["A1"].Value = "text"; wb.WriteXLSX(@"c:\output.xlsx"); Or, if you want to add data into existing …

Member Avatar for jackflint
0
4K
Member Avatar for aerian

Hello, You may want to look at [Elerium HTML to PDF component](http://eleriumsoft.com/PDF_NET/HTML2PDF/Examples/ex1.aspx). It allows to convert html string/file/url to PDF including styles, but it is not free.

Member Avatar for Bessemer
0
2K

The End.