<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Aaron Jefferson Villanueva&#039;s Blog Site&#187; Desktop Application</title>
	<atom:link href="http://malebolgia.shadowsonawall.net/tag/desktop-application/feed" rel="self" type="application/rss+xml" />
	<link>http://malebolgia.shadowsonawall.net</link>
	<description>Programming / Designing Blogging from windows to mac.</description>
	<lastBuildDate>Fri, 06 Aug 2010 02:40:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Desktop Application Icon</title>
		<link>http://malebolgia.shadowsonawall.net/code-programming/desktop-application-icon.html</link>
		<comments>http://malebolgia.shadowsonawall.net/code-programming/desktop-application-icon.html#comments</comments>
		<pubDate>Thu, 04 Mar 2010 10:59:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.Net (C#/VB)]]></category>
		<category><![CDATA[Coding/Programming]]></category>
		<category><![CDATA[Desktop Application]]></category>
		<category><![CDATA[Icon]]></category>
		<category><![CDATA[Visual Studio .Net 2008]]></category>

		<guid isPermaLink="false">http://malebolgia.shadowsonawall.net/?p=251</guid>
		<description><![CDATA[Visual Studio .Net 2008, On Solution Explorer. Right Click. Choose Properties. Select Application, 
Look for Resources/Icon and Manifest, 





Browse for Icon you want for the release build.

 



]]></description>
			<content:encoded><![CDATA[<p><strong>Visual Studio .Net 2008</strong>, On Solution Explorer. <span style="color: #008000;"><span style="text-decoration: underline;">Right Click</span></span>. Choose <span style="color: #008000;"><span style="text-decoration: underline;">Properties</span></span>. Select <span style="color: #008000;"><span style="text-decoration: underline;">Application</span></span>, 
Look for <span style="color: #008000;"><span style="text-decoration: underline;">Resources/Icon and Manifest</span></span>, 
<br /><br />
<a title="Project Settings Visual Studio.net" rel="rokzoom[iconproject]" href="http://malebolgia.shadowsonawall.net/images/csharp/application-icon/IconProjectSettings.png">
<img title="Project Settings Visual Studio.net" src="http://malebolgia.shadowsonawall.net/images/csharp/application-icon/IconProjectSettingsSmall.png" alt="Project Settings Visual Studio.net"    />
</a>
<br /><br />
Browse for Icon you want for the release build.

<br /> <br />
<img title="Application With Custom Icon" src="http://malebolgia.shadowsonawall.net/images/csharp/application-icon/ApplicationWithCustomIcon.png" alt="Application With Custom Icon"    />

</p>
]]></content:encoded>
			<wfw:commentRss>http://malebolgia.shadowsonawall.net/code-programming/desktop-application-icon.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>System.NullReferenceException</title>
		<link>http://malebolgia.shadowsonawall.net/code-programming/system-nullreferenceexception.html</link>
		<comments>http://malebolgia.shadowsonawall.net/code-programming/system-nullreferenceexception.html#comments</comments>
		<pubDate>Sun, 23 Aug 2009 15:32:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.Net (C#/VB)]]></category>
		<category><![CDATA[Coding/Programming]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Desktop Application]]></category>
		<category><![CDATA[Telerik]]></category>

		<guid isPermaLink="false">http://malebolgia.shadowsonawall.net/?p=141</guid>
		<description><![CDATA[While trying Telerik component, I got this error System.NullReferenceException - Object reference not set to an instance of an object, I struggle how to find causing this error, And somehow the solution was

From:



ddbImages.Image = &#40;&#40;Image&#41;item.Tag&#41;.GetThumbnailImage&#40;20, 20, null, new IntPtr&#40;&#41;&#41;;
ddbImages.Text = item.Text;



To:



if &#40;item != null&#41;
  &#123;
    ddbImages.Image = &#40;&#40;Image&#41;item.Tag&#41;.GetThumbnailImage&#40;20, 20, null, new [...]]]></description>
			<content:encoded><![CDATA[<p>While trying <a href="http://www.telerik.com" target="_blank">Telerik</a> component, I got this error<span style="color: #993300;"> System.NullReferenceException - Object reference not set to an instance of an object</span>, I struggle how to find causing this error, And somehow the solution was</p>
<br />
<p>From:</p>
<br />


<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;">ddbImages.<span style="color: #0000FF;">Image</span> <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span>Image<span style="color: #000000;">&#41;</span>item.<span style="color: #0000FF;">Tag</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">GetThumbnailImage</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">20</span>, <span style="color: #FF0000;">20</span>, <span style="color: #0600FF;">null</span>, <span style="color: #008000;">new</span> IntPtr<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
ddbImages.<span style="color: #0000FF;">Text</span> <span style="color: #008000;">=</span> item.<span style="color: #0000FF;">Text</span><span style="color: #008000;">;</span></pre></div></div>


<br />
<p>To:</p>
<br />


<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>item <span style="color: #008000;">!=</span> <span style="color: #0600FF;">null</span><span style="color: #000000;">&#41;</span>
  <span style="color: #000000;">&#123;</span>
    ddbImages.<span style="color: #0000FF;">Image</span> <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span>Image<span style="color: #000000;">&#41;</span>item.<span style="color: #0000FF;">Tag</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">GetThumbnailImage</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">20</span>, <span style="color: #FF0000;">20</span>, <span style="color: #0600FF;">null</span>, <span style="color: #008000;">new</span> IntPtr<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
    ddbImages.<span style="color: #0000FF;">Text</span> <span style="color: #008000;">=</span> item.<span style="color: #0000FF;">Text</span><span style="color: #008000;">;</span>
  <span style="color: #000000;">&#125;</span></pre></div></div>



]]></content:encoded>
			<wfw:commentRss>http://malebolgia.shadowsonawall.net/code-programming/system-nullreferenceexception.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
