Created Issue: Npoi use in desktop application...... [11594]
Hello All,I have just check with other porject created by NPOI dll and want to use this dll in my next project which is based on Windows Forms.Hence my query is how to export that generated excel in...
View ArticleCommented Issue: Npoi use in desktop application...... [11594]
Comments: ** Comment from web user: tonyqus ** Please see npoi.examples package. Most of the examples are console applications. It's almost as same as winForm ones
View ArticleClosed Issue: Npoi use in desktop application...... [11594]
Comments: Since it's not a issue but something like discussion, I'd like to close it.
View ArticleCommented Issue: read numbers with specific format [11450]
Comments: ** Comment from web user: tonyqus ** You should use NumericCellValue instead of String value
View ArticleCommented Issue: Couldnot delete worksheet [11376]
Comments: ** Comment from web user: tonyqus ** Is this issue solved finally? Please give me some updates
View ArticleCommented Issue: Adding Custom color as a cell background for 64 bit os [11206]
Comments: ** Comment from web user: tonyqus ** Have you tried your application on a 32bit OS? I suggest you run it on 32bit OS to make sure it's not a code issue.
View ArticleNew Post: How to configure whole column without configure the cell
Hi all, I got situation that while using Npoi, i have to configure the particular column instead of all cells for that column. Even in my Npoi dll there is no Examples Class. So please guide to do so...
View ArticleCreated Issue: Formatting not visible in Microsoft Office Excel [11597]
Hi all,I was stuck at new problem that excel file created by NPOI, could easily open in Open Office and Libre Office with all formatting but while opening in Microsoft Office Excel the formatting is...
View ArticleNew Post: [XSS] XLSX file : repair needed when using Double in SetCellValue()
When exctracting data form a SQL Table, I store data in Object variables in order to be sure not to loose data type. Then I made a method to check Object data type and transtype automatically the...
View ArticleNew Post: .xlsx. Date cell import to DataTable
Hi! I'm tried to convert .xlsx file to DataTable format by using NPOI 2.0 library. It's OK, but I have a problem with convert to string date cell. When I try to use construction like...
View ArticleCreated Issue: Is there any problem in excel for formatting after 32400th...
Dear All,I have issue that with using Npoi dll, formatting (color, border) of cell number 32400.I have data, which must fill and format of 56880 cells in one excel only.But after 32400 cell formatting...
View ArticleCreated Issue: Export excel not working on all pc's [11612]
I am using NPOI's dll for excel export functionality. The excel export is not working on one of my client's browser. I have read the documentation and cant find anything if its required to have any...
View ArticleNew Post: .xlsx. Date cell import to DataTable
ICell.ToString should not be rebused. You should determine the type of Cell first by ICell.CellType. Then use different property to get the values like NumericCellValue, DateCellValue and so on.
View ArticleNew Post: How to configure whole column without configure the cell
There is no existing API to configure a whole column because the structure of a sheet consists of IRow, ICell, instead of IColumn, ICell. You have to iterate the IRow and call GetCell with the fixed...
View ArticleNew Post: Add pictures to exists Excel file with pictures
Which version of NPOI are you using? 1.2.5 or 2.0?
View ArticleCommented Issue: Export excel not working on all pc's [11612]
I am using NPOI's dll for excel export functionality. The excel export is not working on one of my client's browser. I have read the documentation and cant find anything if its required to have any...
View ArticleCommented Issue: Formatting not visible in Microsoft Office Excel [11597]
Hi all,I was stuck at new problem that excel file created by NPOI, could easily open in Open Office and Libre Office with all formatting but while opening in Microsoft Office Excel the formatting is...
View ArticleNew Post: .xlsx. Date cell import to DataTable
No. Problem was with a CurrentCulture. I'm from Russia, and with my culture this code don't work. Solution of my problem:private DataTable xlsxToDT(string fileName) { var prevCulture =...
View Article