New Post: Extracting information from the Excel VBA Project part of a Workbook
Hi, I am interested in extracting information from the VBA project, specifically COM references and code modules names. Is this currently possible with NPOI? If not how much effort would it be to...
View ArticleNew Post: Extracting information from the Excel VBA Project part of a Workbook
If it's just VBA model names, I think it's possible. Please contact me via support@neuzilla.com. I can create a consulting case for you.
View ArticleNew Post: I create an excel 2003 file but not display row number and column...
I use NPOI 2.1.1 to create an excel 2003 file. and find not display row number and column number .but the data ,style, picture is right. please fix it quickly ,thank you . if you want the excel file i...
View ArticleNew Post: How open a Workbook without Events enabled.
Hi all, In Office.Interop.Excel there is a way to open a XLS file without warnings and Events:pExcel = new Excel.ApplicationClass(); pExcel.EnableEvents = false; pExcel.Visible = pvisible; pBooks =...
View ArticleNew Post: How open a Workbook without Events enabled.
NPOI don't use Office.Interop. It's pure .NET code. No warning or events at all.
View ArticleNew Post: How open a Workbook without Events enabled.
Ok,, so how can u open a XLSM (macros) excel file without warnings ???
View ArticleNew Post: AutoSizeColumn got slow in NPOI 2.0
AutoSizeColumn is too slow, EPPlus is faster。
View ArticleNew Post: Worksheet protection. IsLocked=false not working
Hi all, I'm new to npoi, and i'm trying to protect a worksheet while leaving certain cells open for editing. I've tried everything i can think of. The sample below is a merger of two of the npoi...
View ArticleNew Post: Worksheet protection. IsLocked=false not working
Looks like this is a bug with v2.1.1.0 I downgraded to v2.0.6.0 (2.6) and it worked perfectly
View ArticleNew Post: Does XWPF support export word with inserting data by bookmark
how to use CT_Bookmark
View ArticleNew Post: XSSFWorkbook is corrupt when CurrentThread.CurrentCulture uses a...
Mistakenly created a discussion instead of an issue. See https://npoi.codeplex.com/workitem/13252
View ArticleNew Post: Chart Template.
Sorry for delay i must pause the project and i resume again now and didnt see your question till now. .crt file is a chart template generated by Excel. If you choose a chart can save it as template and...
View ArticleNew Post: Is there any volunteer to join me?
Hi Tony, I've worked with c# for 3 years.I want to join you. email: lovejing1684@126.com Looking forward to your reply!
View ArticleNew Post: Write to XLSX file issue
using new version of npoi i.e(2.1 or 2.06). It is not able to handle more than 55000 data.. I need to handle more than 100000 data
View ArticleNew Post: Write to XLSX file issue
Hi Team , I have facing a serious issue with xls or xlsx workbook to insert image through using NPOI library in Xls we are to not able to add picture in this after calling the add picture method key...
View ArticleNew Post: How to open/edit a protected document (.xls, .xlsx)
Hi, i'm trying to open a xls/xlsx file that is protected by a password. First, I would like to know: Is it possible to do it with NPOI? If it is, how can I do it? I found some code like this: //...
View ArticleNew Post: Is there any volunteer to join me?
Hi Tony,I've been working with C# for 6 years now, I've already been using NPOI for a lot of server scenarios. Let me know if I can help to improve it :). email: ville_heartagram@hotmail.com
View ArticleNew Post: Formatting cell with thousand separator
Hello I'm trying to format NPOI cell with thousand separaror I'm trying this but it does not change anything ICell Cell= dataRow.CreateCell(I); Cell.CellStyle.DataFormat =...
View ArticleNew Post: Maintain file readonly once Workbook open
Hi, What is the recommended worflow to keep a workbook locked for editing while loaded with NPOI? I am using: Dim ReadStream As New FileStream(WorkbookPath, FileMode.Open, FileAccess.ReadWrite,...
View Article