<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Simple Hex Editor &#8211; C#</title>
	<atom:link href="http://dranaxum.wordpress.com/2008/02/28/simple-hex-editor-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://dranaxum.wordpress.com/2008/02/28/simple-hex-editor-c/</link>
	<description>A software developer's blog</description>
	<lastBuildDate>Tue, 13 Oct 2009 20:02:42 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: prajwalan</title>
		<link>http://dranaxum.wordpress.com/2008/02/28/simple-hex-editor-c/#comment-131</link>
		<dc:creator>prajwalan</dc:creator>
		<pubDate>Tue, 24 Mar 2009 12:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://dranaxum.wordpress.com/?p=27#comment-131</guid>
		<description>A very cool sample. 

Keep it up.</description>
		<content:encoded><![CDATA[<p>A very cool sample. </p>
<p>Keep it up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nadine</title>
		<link>http://dranaxum.wordpress.com/2008/02/28/simple-hex-editor-c/#comment-125</link>
		<dc:creator>Nadine</dc:creator>
		<pubDate>Thu, 22 Jan 2009 16:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://dranaxum.wordpress.com/?p=27#comment-125</guid>
		<description>Hi there,
Thanks for sharing this master piece with us all:

Good Luck
Nadine</description>
		<content:encoded><![CDATA[<p>Hi there,<br />
Thanks for sharing this master piece with us all:</p>
<p>Good Luck<br />
Nadine</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: temporary</title>
		<link>http://dranaxum.wordpress.com/2008/02/28/simple-hex-editor-c/#comment-114</link>
		<dc:creator>temporary</dc:creator>
		<pubDate>Mon, 29 Dec 2008 22:34:45 +0000</pubDate>
		<guid isPermaLink="false">http://dranaxum.wordpress.com/?p=27#comment-114</guid>
		<description>muie</description>
		<content:encoded><![CDATA[<p>muie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dranaxum</title>
		<link>http://dranaxum.wordpress.com/2008/02/28/simple-hex-editor-c/#comment-112</link>
		<dc:creator>dranaxum</dc:creator>
		<pubDate>Tue, 02 Dec 2008 12:51:34 +0000</pubDate>
		<guid isPermaLink="false">http://dranaxum.wordpress.com/?p=27#comment-112</guid>
		<description>Mario, thanks for the feedback.
I knew I didn&#039;t deal with that problem the minute I published the it on this blog. The fact is that I wanted to stick to the idea and not very much on the actual code. Anyway it&#039;s not a very big problem/bug! :)</description>
		<content:encoded><![CDATA[<p>Mario, thanks for the feedback.<br />
I knew I didn&#8217;t deal with that problem the minute I published the it on this blog. The fact is that I wanted to stick to the idea and not very much on the actual code. Anyway it&#8217;s not a very big problem/bug! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mario</title>
		<link>http://dranaxum.wordpress.com/2008/02/28/simple-hex-editor-c/#comment-110</link>
		<dc:creator>Mario</dc:creator>
		<pubDate>Thu, 27 Nov 2008 01:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://dranaxum.wordpress.com/?p=27#comment-110</guid>
		<description>I failed to mention that the fix above is for the case when you select the open button with an invalid (or no) file entry.</description>
		<content:encoded><![CDATA[<p>I failed to mention that the fix above is for the case when you select the open button with an invalid (or no) file entry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mario</title>
		<link>http://dranaxum.wordpress.com/2008/02/28/simple-hex-editor-c/#comment-109</link>
		<dc:creator>Mario</dc:creator>
		<pubDate>Thu, 27 Nov 2008 00:59:48 +0000</pubDate>
		<guid isPermaLink="false">http://dranaxum.wordpress.com/?p=27#comment-109</guid>
		<description>To prevent a nasty crash, you might want to add this ...

        private void OpenFile_Click(object sender, EventArgs e)
        {
            path = txtFileName.Text;

            if (path.Length == 0)
            {
                MessageBox.Show(&quot;Please enter a file name!&quot;);
                return;
            }

            if ( !File.Exists(path) )
            {
                MessageBox.Show(&quot;No such file!&quot;);
                return;
            }</description>
		<content:encoded><![CDATA[<p>To prevent a nasty crash, you might want to add this &#8230;</p>
<p>        private void OpenFile_Click(object sender, EventArgs e)<br />
        {<br />
            path = txtFileName.Text;</p>
<p>            if (path.Length == 0)<br />
            {<br />
                MessageBox.Show(&#8220;Please enter a file name!&#8221;);<br />
                return;<br />
            }</p>
<p>            if ( !File.Exists(path) )<br />
            {<br />
                MessageBox.Show(&#8220;No such file!&#8221;);<br />
                return;<br />
            }</p>
]]></content:encoded>
	</item>
</channel>
</rss>
