Patch Uploaded: #14355
ZickZack has uploaded a patch.Description:I had trouble with an MVC application and downloading an Excel Sheet with the method SaveAs(stream)I changed the method public void SaveAs(Stream stream)(see...
View ArticleCreated Issue: Excel 2013 - 2010 compatibility [8695]
Problem discussed here: http://closedxml.codeplex.com/discussions/403797
View ArticleNew Comment on "Turning off events"
Turning off events REALLY helps, especially on larger worksheets. My application sped up from over 3 minutes to about 28 seconds, just by disabling those events.
View ArticleUpdated Wiki: Home
Project DescriptionClosedXML makes it easier for developers to create Excel 2007/2010 files. It provides a nice object oriented way to manipulate the files (similar to VBA) without dealing with the...
View ArticleNew Comment on "Sheet Protection"
I was wondering the same thing I would like to be able to protect specific cells
View ArticleNew Post: proctect/lock specific cells
Hi, I cannot seem to be able to figure out how to lock specific cells from any type of editing and ranges of cells. If someone can give me a small example it would be very appreciated. Thanks,
View ArticleNew Post: proctect/lock specific cells
In excel: Select all cells and make sure they are unlocked. Select the cells I want to lock and set them to locked. Select protect (make sure select locked/unlocked cells are both checked) Save This...
View ArticleNew Post: proctect/lock specific cells
this is what I got XLWorkbook workbook = new XLWorkbook(); IXLWorksheet ixlWorksheet = workbook.AddWorksheet("lock test"); //set values ixlWorksheet.Row(1).Cell(1).SetValue("P1");...
View ArticleNew Post: protect an area
what I have done is the following (the exact syntax might be different for you, depending on the development environment that you are using): when you create the sheet, release the ranges that you do...
View ArticleNew Post: IntegerExtension.ToStringLookup not threadsafe?
Same problem here. Does anyone have a solution?
View ArticleNew Post: DLL wrapper to umnanaged code
Ouch... I am feeling as a total beginner in OOP (and I am!) - want to make a csharp dll on ClosedXML to export functions to unmanaged code: [DllExport("OpenFileXY", CallingConvention =...
View ArticleReviewed: ClosedXML 0.68.1 (May 07, 2013)
Rated 5 Stars (out of 5) - Best library and very easy to use! Thank you.
View ArticleNew Post: Code examples on creating Pivot Table?
I'd like to, but I can't seem to contribute to the wiki.
View ArticleUpdated Wiki: Pivot Table example
In this example, we'll create a pivot table of monthly pastry sales. First, we'll need our Pastry class: public class Pastry { public Pastry(string name, int amount, string month) { Month = month; Name...
View ArticleUpdated Wiki: Documentation
This project needs a new caretaker! As much as I hate to admit it, I can't give this project the love it deserves (paying the bills has a slightly higher priority). If you have the time and want to...
View ArticleUpdated Wiki: Pivot Table example
Pivot Tables In this example, we'll create a pivot table of monthly pastry sales. First, we'll need our Pastry class: public class Pastry { public Pastry(string name, int amount, string month) { Month...
View ArticleNew Post: Code examples on creating Pivot Table?
Okay, a pivot table code example has been added to the documentation: https://closedxml.codeplex.com/wikipage?title=Pivot%20Table%20example
View Article