<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Build beautiful XLS documents in .NET with NPOI</title>
	<atom:link href="http://www.zachhunter.com/2010/05/getting-started-with-npoi/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zachhunter.com/2010/05/getting-started-with-npoi/</link>
	<description>Random Brain Drool</description>
	<lastBuildDate>Thu, 02 Feb 2012 20:52:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Avinesh</title>
		<link>http://www.zachhunter.com/2010/05/getting-started-with-npoi/comment-page-1/#comment-488</link>
		<dc:creator>Avinesh</dc:creator>
		<pubDate>Sun, 19 Jun 2011 06:35:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=222#comment-488</guid>
		<description>Hi,

I just starting using NPOI to build a .net application that can export data to excel and it is working well. However now I would like to increase the application&#039;s performance by decreasing the actual runtime, by making use of multi-core processing (or parallel processing) to get the full usage of the processing power and decrease the conversion time. 

Do you have any suggestion with regards to this using NPOI?

Thanks in advance,</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I just starting using NPOI to build a .net application that can export data to excel and it is working well. However now I would like to increase the application&#8217;s performance by decreasing the actual runtime, by making use of multi-core processing (or parallel processing) to get the full usage of the processing power and decrease the conversion time. </p>
<p>Do you have any suggestion with regards to this using NPOI?</p>
<p>Thanks in advance,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zach</title>
		<link>http://www.zachhunter.com/2010/05/getting-started-with-npoi/comment-page-1/#comment-448</link>
		<dc:creator>Zach</dc:creator>
		<pubDate>Tue, 24 May 2011 22:34:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=222#comment-448</guid>
		<description>Yes... You can save it to the server by changing the &quot;Write&quot; method to use a file stream that points to a location on your server.

[sourcecode language=&quot;csharp&quot;]
FileStream fs=new FileStream(&quot;c:\\MyExcelData.XLS&quot;, FileMode.Append, FileAccess.Write, FileShare.Write);
[/sourcecode]</description>
		<content:encoded><![CDATA[<p>Yes&#8230; You can save it to the server by changing the &#8220;Write&#8221; method to use a file stream that points to a location on your server.</p>
<pre class="brush: csharp; title: ; notranslate">
FileStream fs=new FileStream(&quot;c:\\MyExcelData.XLS&quot;, FileMode.Append, FileAccess.Write, FileShare.Write);
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason ⋆★ 'Loki '★⋆ Smith</title>
		<link>http://www.zachhunter.com/2010/05/getting-started-with-npoi/comment-page-1/#comment-446</link>
		<dc:creator>Jason ⋆★ 'Loki '★⋆ Smith</dc:creator>
		<pubDate>Fri, 13 May 2011 13:25:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=222#comment-446</guid>
		<description>awesome post zach!!!!!!!!!!

thanx a million!</description>
		<content:encoded><![CDATA[<p>awesome post zach!!!!!!!!!!</p>
<p>thanx a million!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mkk</title>
		<link>http://www.zachhunter.com/2010/05/getting-started-with-npoi/comment-page-1/#comment-444</link>
		<dc:creator>mkk</dc:creator>
		<pubDate>Tue, 03 May 2011 16:46:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=222#comment-444</guid>
		<description>Hi Zach,

This was a nice blog post, is there someway that i want to save the file in the server, and directly to the browser</description>
		<content:encoded><![CDATA[<p>Hi Zach,</p>
<p>This was a nice blog post, is there someway that i want to save the file in the server, and directly to the browser</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zach</title>
		<link>http://www.zachhunter.com/2010/05/getting-started-with-npoi/comment-page-1/#comment-436</link>
		<dc:creator>Zach</dc:creator>
		<pubDate>Mon, 04 Apr 2011 21:24:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=222#comment-436</guid>
		<description>Tim,

Yes, you can definitely add more sheets... I have an example in one of my other posts about automatically starting a new sheet when you hit 65.5K row limit.  In a nutshell, you need to track your row count and once you hit the limit you create a new sheet and continue loading.  If you need to work with lots of rows and your using Office 2007+ you should consider XLSX since the limit was increased to 1M rows.

Zach</description>
		<content:encoded><![CDATA[<p>Tim,</p>
<p>Yes, you can definitely add more sheets&#8230; I have an example in one of my other posts about automatically starting a new sheet when you hit 65.5K row limit.  In a nutshell, you need to track your row count and once you hit the limit you create a new sheet and continue loading.  If you need to work with lots of rows and your using Office 2007+ you should consider XLSX since the limit was increased to 1M rows.</p>
<p>Zach</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Larkin</title>
		<link>http://www.zachhunter.com/2010/05/getting-started-with-npoi/comment-page-1/#comment-435</link>
		<dc:creator>Tim Larkin</dc:creator>
		<pubDate>Mon, 04 Apr 2011 16:35:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=222#comment-435</guid>
		<description>Hi Zach.
I am running into a problem. I wrote a C# console app that processes dozens of XML files, one at a time and writes them out as .XLS files. The issue I am not running into is this. Some of the XML files are hitting 400Mbytes in size. Which means I am hitting some memory issue, but the issue I am primarily concerned with is I am not hitting files with multiple sheets some of which contain as many as 100 thousand Rows so I am getting and int16 based error. Is there anyway to A). Append sheets to an existing xls file.
and B) have you are anyone you know of recoded or changed the library to use int 32 for more records?</description>
		<content:encoded><![CDATA[<p>Hi Zach.<br />
I am running into a problem. I wrote a C# console app that processes dozens of XML files, one at a time and writes them out as .XLS files. The issue I am not running into is this. Some of the XML files are hitting 400Mbytes in size. Which means I am hitting some memory issue, but the issue I am primarily concerned with is I am not hitting files with multiple sheets some of which contain as many as 100 thousand Rows so I am getting and int16 based error. Is there anyway to A). Append sheets to an existing xls file.<br />
and B) have you are anyone you know of recoded or changed the library to use int 32 for more records?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Macsys</title>
		<link>http://www.zachhunter.com/2010/05/getting-started-with-npoi/comment-page-1/#comment-412</link>
		<dc:creator>Macsys</dc:creator>
		<pubDate>Mon, 24 Jan 2011 10:42:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=222#comment-412</guid>
		<description>I was just looking for something like this to export my data table to Excel in BIFF format. It worked great.

One thing. Can you suggest something similar which produces .XLSX (2007 Format) files.

Thanks</description>
		<content:encoded><![CDATA[<p>I was just looking for something like this to export my data table to Excel in BIFF format. It worked great.</p>
<p>One thing. Can you suggest something similar which produces .XLSX (2007 Format) files.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

