New Post: How can I change the long date format to short date format?
Thanks 540YMX it works fine for me.
View ArticleNew Post: How to read active-x control in excel using NPOI
HI......... I have a active-x checkbox control in my excel. I need to read the value of the active-x control i.e. the checkbox on the server...on my local machine as excel component is installed there...
View ArticleNew Post: NPOI 2.0 Source Code
The lastest code is located at https://github.com/tonyqus/npoi
View ArticleNew Post: Excel Conversion to PDF using NPOI
PDF is totally out of scope of NPOI. sorry
View ArticleNew Post: How to read active-x control in excel using NPOI
ActiveX control is not supported in NPOI
View ArticleNew Post: XSLX Sheet ShiftRows, RemoveRow doesn't update LastRowNum
Hi All! ISheet has ShiftRow, RemoveRow method. HSSFSheet after each row operation recalc LastRowNum value. XSSFSHeet recalc LastRowNum only after CreateRow operation triggers. How manualy recalc...
View ArticleNew Post: How to disable the console output for XSSFWorkbook
Hi, I'm using the XSSFWorkbook object in my console application, and when I run my application, I see text (as below) is written in the console during the Excel object composing....
View ArticleNew Post: How to disable the console output for XSSFWorkbook
I found a solution. Before the declaration of XSSFWorkbook object configure the console output to be: var consoleOut = new StringWriter(); Console.SetOut(consoleOut); When you finish with the Excel...
View ArticleNew Post: XLS file created from template doesn't save correctly - any ideas?
It's suggested that you directly use xls as the template. xlt file is never tested by NPOI test cases. I'm not sure if the structure is same or not.
View ArticleNew Post: Error while reading .doc file
XWPF is for docx instead of doc. To read doc, you have to use code in ScratchPad. The namespace is called HWPF. But HWPF is not included in official release because it's not stable yet.
View ArticleNew Post: XSLX Sheet ShiftRows, RemoveRow doesn't update LastRowNum
It's a bug in XSSFSheet.ShiftRow.
View ArticleNew Post: XLS file created from template doesn't save correctly - any ideas?
Thanks Tonyqus. We are re-writing an existing application, and the upstream systems provide templates in xlt format. Therefore we have to stick with XLT unfortunately. Aspose.Cells can handle xlt...
View ArticleNew Post: XSSF Performance: degrade when creating huge number of rows
Is a new version going to be released anytime soon? I'm experiencing major performance issues when using XSSF to generate a xlsx spreadsheet. Thanks.
View ArticleNew Post: html converter
Dear All, I am using the html converter included in the examples folder. However, it is converting all the worksheets into a single html. Is there a way to convert only one worksheet instead of a...
View ArticleNew Post: Turn off Transition Formula Evaluation
Hi, when i export using the example CreateEmptyExcelFile. I have noticed "transition formula evaluation" is checked by default export. You can see this value by going to Excel options > Advance >...
View ArticleNew Post: Turn off Transition Formula Evaluation
The solution was in the latest examples, i must have been using an older version. ((HSSFSheet)hssfworkbook.GetSheetAt(0)).AlternativeFormula = false;...
View ArticleNew Post: Out of Memory Error - while writing to Excel using Xssfworkbook
Is there any alternate way to get rid of this using existing dll???
View Article