<?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 for Hash</title>
	<atom:link href="http://hashfactor.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://hashfactor.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 24 Nov 2009 21:44:32 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on C# Winforms: Create a Single Instance Form Using Singleton by Shlomo</title>
		<link>http://hashfactor.wordpress.com/2009/03/31/c-winforms-create-a-single-instance-form/#comment-179</link>
		<dc:creator>Shlomo</dc:creator>
		<pubDate>Tue, 24 Nov 2009 21:44:32 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/2009/02/06/c-winforms-create-a-single-instance-form/#comment-179</guid>
		<description>you were a great help thanx</description>
		<content:encoded><![CDATA[<p>you were a great help thanx</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C#: Check if a Form is already opened by SSK Sorgulama</title>
		<link>http://hashfactor.wordpress.com/2009/01/28/c-check-if-a-form-is-already-opened/#comment-177</link>
		<dc:creator>SSK Sorgulama</dc:creator>
		<pubDate>Tue, 10 Nov 2009 07:59:46 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/?p=62#comment-177</guid>
		<description>Thanks Gonzalo, it works for me</description>
		<content:encoded><![CDATA[<p>Thanks Gonzalo, it works for me</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C#: Parsing DateTime with TimeZone by Hugo Bonacci</title>
		<link>http://hashfactor.wordpress.com/2009/02/02/c-parsing-datetime-with-timezone/#comment-176</link>
		<dc:creator>Hugo Bonacci</dc:creator>
		<pubDate>Tue, 03 Nov 2009 16:12:38 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/2009/02/02/c-parsing-datetime-with-timezone/#comment-176</guid>
		<description>Great solution here man - good work!</description>
		<content:encoded><![CDATA[<p>Great solution here man &#8211; good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C#: Disallow multiple instances of your application. The Mutex way. by Andrew</title>
		<link>http://hashfactor.wordpress.com/2009/02/02/c-disallow-multiple-instances-of-your-application-the-mutex-way/#comment-160</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Wed, 26 Aug 2009 22:01:22 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/2009/02/02/c-disallow-multiple-instances-of-your-application-the-mutex-way/#comment-160</guid>
		<description>Although in hindsight that&#039;s Win Forms specific, perhaps not necessarily of interest to your article...</description>
		<content:encoded><![CDATA[<p>Although in hindsight that&#8217;s Win Forms specific, perhaps not necessarily of interest to your article&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C#: Disallow multiple instances of your application. The Mutex way. by Andrew</title>
		<link>http://hashfactor.wordpress.com/2009/02/02/c-disallow-multiple-instances-of-your-application-the-mutex-way/#comment-159</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Wed, 26 Aug 2009 21:59:45 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/2009/02/02/c-disallow-multiple-instances-of-your-application-the-mutex-way/#comment-159</guid>
		<description>You might want to look at: http://www.hanselman.com/blog/TheWeeklySourceCode31SingleInstanceWinFormsAndMicrosoftVisualBasicdll.aspx

There is also a great alternative in there from a user comment that uses Mutex&#039;s: http://www.flawlesscode.com/post/2008/02/Enforcing-single-instance-with-argument-passing.aspx</description>
		<content:encoded><![CDATA[<p>You might want to look at: <a href="http://www.hanselman.com/blog/TheWeeklySourceCode31SingleInstanceWinFormsAndMicrosoftVisualBasicdll.aspx" rel="nofollow">http://www.hanselman.com/blog/TheWeeklySourceCode31SingleInstanceWinFormsAndMicrosoftVisualBasicdll.aspx</a></p>
<p>There is also a great alternative in there from a user comment that uses Mutex&#8217;s: <a href="http://www.flawlesscode.com/post/2008/02/Enforcing-single-instance-with-argument-passing.aspx" rel="nofollow">http://www.flawlesscode.com/post/2008/02/Enforcing-single-instance-with-argument-passing.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C#: Check if a Form is already opened by Ravindr.pc</title>
		<link>http://hashfactor.wordpress.com/2009/01/28/c-check-if-a-form-is-already-opened/#comment-158</link>
		<dc:creator>Ravindr.pc</dc:creator>
		<pubDate>Wed, 19 Aug 2009 06:04:39 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/?p=62#comment-158</guid>
		<description>Thanks man, Nice Coding. I used Like This,

Form TaskFormName;
if ((TaskFormName = IsFormAlreadyOpen(typeof(MyForm))) == null)
                    {
                        TaskFormName = new MyForm(null);
                        if (ActiveForm != null) TaskFormName.MdiParent = ActiveForm;
                        TaskFormName.Show();
                    }
                    else
                    {
                        TaskFormName.WindowState = FormWindowState.Normal;
                        TaskFormName.BringToFront();
                    }</description>
		<content:encoded><![CDATA[<p>Thanks man, Nice Coding. I used Like This,</p>
<p>Form TaskFormName;<br />
if ((TaskFormName = IsFormAlreadyOpen(typeof(MyForm))) == null)<br />
                    {<br />
                        TaskFormName = new MyForm(null);<br />
                        if (ActiveForm != null) TaskFormName.MdiParent = ActiveForm;<br />
                        TaskFormName.Show();<br />
                    }<br />
                    else<br />
                    {<br />
                        TaskFormName.WindowState = FormWindowState.Normal;<br />
                        TaskFormName.BringToFront();<br />
                    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C#: Check if a Form is already opened by Luis</title>
		<link>http://hashfactor.wordpress.com/2009/01/28/c-check-if-a-form-is-already-opened/#comment-157</link>
		<dc:creator>Luis</dc:creator>
		<pubDate>Mon, 17 Aug 2009 10:40:31 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/?p=62#comment-157</guid>
		<description>if (newFrmReports.IsMdiChild &amp;&amp; newFrmReports.IsDisposed==false)
                    {   
                       
                        newFrmReports.WindowState = FormWindowState.Normal;
                        newFrmReports.BringToFront();
                    } 
                    else
                    {
                         
                        newFrmReports = new frmReports();
                        newFrmReports.MdiParent = this;
                        newFrmReports.Show();
                       
                    }</description>
		<content:encoded><![CDATA[<p>if (newFrmReports.IsMdiChild &amp;&amp; newFrmReports.IsDisposed==false)<br />
                    {   </p>
<p>                        newFrmReports.WindowState = FormWindowState.Normal;<br />
                        newFrmReports.BringToFront();<br />
                    }<br />
                    else<br />
                    {</p>
<p>                        newFrmReports = new frmReports();<br />
                        newFrmReports.MdiParent = this;<br />
                        newFrmReports.Show();</p>
<p>                    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C#: Check if a Form is already opened by Jay Stratemeyer</title>
		<link>http://hashfactor.wordpress.com/2009/01/28/c-check-if-a-form-is-already-opened/#comment-155</link>
		<dc:creator>Jay Stratemeyer</dc:creator>
		<pubDate>Fri, 17 Jul 2009 17:45:51 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/?p=62#comment-155</guid>
		<description>oops i left some out....

bool FormOpen= false;
                        foreach (Form
                            S in Application.OpenForms)
                        {
                            if (S is MyForm)
                            {
                                FormOpen= true;

                            }

                        }
                        if (FormOpen== true)
                        {
                            MessageBox.Show(&quot;Form already open.&quot;);
                        }
                        else
                        {
                            Form MyForm= new MyForm();
                            OnSite.Show();

                        }</description>
		<content:encoded><![CDATA[<p>oops i left some out&#8230;.</p>
<p>bool FormOpen= false;<br />
                        foreach (Form<br />
                            S in Application.OpenForms)<br />
                        {<br />
                            if (S is MyForm)<br />
                            {<br />
                                FormOpen= true;</p>
<p>                            }</p>
<p>                        }<br />
                        if (FormOpen== true)<br />
                        {<br />
                            MessageBox.Show(&#8220;Form already open.&#8221;);<br />
                        }<br />
                        else<br />
                        {<br />
                            Form MyForm= new MyForm();<br />
                            OnSite.Show();</p>
<p>                        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C#: Check if a Form is already opened by Jay Stratemeyer</title>
		<link>http://hashfactor.wordpress.com/2009/01/28/c-check-if-a-form-is-already-opened/#comment-154</link>
		<dc:creator>Jay Stratemeyer</dc:creator>
		<pubDate>Fri, 17 Jul 2009 17:43:41 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/?p=62#comment-154</guid>
		<description>here is how i do it:

bool onsiteopen = false;
                        
foreach (Form S in Application.OpenForms)
                        {
                            if (S is &quot;MyForm&quot; )
                            {
                                onsiteopen = true;

                            }

                        }
                        if (onsiteopen == true)
                        {
                            MessageBox.Show(&quot;this form is already open.&quot;);
                        }</description>
		<content:encoded><![CDATA[<p>here is how i do it:</p>
<p>bool onsiteopen = false;</p>
<p>foreach (Form S in Application.OpenForms)<br />
                        {<br />
                            if (S is &#8220;MyForm&#8221; )<br />
                            {<br />
                                onsiteopen = true;</p>
<p>                            }</p>
<p>                        }<br />
                        if (onsiteopen == true)<br />
                        {<br />
                            MessageBox.Show(&#8220;this form is already open.&#8221;);<br />
                        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C#: Check if a Form is already opened by Rejitha</title>
		<link>http://hashfactor.wordpress.com/2009/01/28/c-check-if-a-form-is-already-opened/#comment-153</link>
		<dc:creator>Rejitha</dc:creator>
		<pubDate>Thu, 25 Jun 2009 06:51:08 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/?p=62#comment-153</guid>
		<description>Excellent!! this works!!</description>
		<content:encoded><![CDATA[<p>Excellent!! this works!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C#: Check if a Form is already opened by Gonzalo Lebron</title>
		<link>http://hashfactor.wordpress.com/2009/01/28/c-check-if-a-form-is-already-opened/#comment-150</link>
		<dc:creator>Gonzalo Lebron</dc:creator>
		<pubDate>Thu, 18 Jun 2009 23:43:50 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/?p=62#comment-150</guid>
		<description>Your example was not working for me, the function was ok, but I modified the way check if opened:

UserForm frm = null;
                        if ((frm = (UserForm)IsFormAlreadyOpen(typeof(UserForm))) == null)
                        {
                            frm = new UserForm();
                            frm.Show();
                        }
                        else
                            MessageBox.Show(&quot;Already Opened&quot;);</description>
		<content:encoded><![CDATA[<p>Your example was not working for me, the function was ok, but I modified the way check if opened:</p>
<p>UserForm frm = null;<br />
                        if ((frm = (UserForm)IsFormAlreadyOpen(typeof(UserForm))) == null)<br />
                        {<br />
                            frm = new UserForm();<br />
                            frm.Show();<br />
                        }<br />
                        else<br />
                            MessageBox.Show(&#8220;Already Opened&#8221;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle: Drop Database Command by Gurjeet Singh</title>
		<link>http://hashfactor.wordpress.com/2009/05/25/oracle-drop-database-command/#comment-144</link>
		<dc:creator>Gurjeet Singh</dc:creator>
		<pubDate>Mon, 25 May 2009 16:52:50 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/2009/05/25/oracle-drop-database-command/#comment-144</guid>
		<description>Didn&#039;t know it existed... Thanks.</description>
		<content:encoded><![CDATA[<p>Didn&#8217;t know it existed&#8230; Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Winforms .NET: Docking problem with ToolStrip and StatusStrip by martin read</title>
		<link>http://hashfactor.wordpress.com/2009/02/06/winforms-net-docking-problem-with-toolstrip-and-statusstrip/#comment-143</link>
		<dc:creator>martin read</dc:creator>
		<pubDate>Sun, 24 May 2009 21:53:41 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/2009/02/06/winforms-net-docking-problem-with-toolstrip-and-statusstrip/#comment-143</guid>
		<description>Champ indeed, thanks heaps</description>
		<content:encoded><![CDATA[<p>Champ indeed, thanks heaps</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating one-to-many relationship in NHibernate by hashfactor</title>
		<link>http://hashfactor.wordpress.com/2009/03/31/creating-one-to-many-relationship-in-nhibernate/#comment-134</link>
		<dc:creator>hashfactor</dc:creator>
		<pubDate>Thu, 30 Apr 2009 01:02:51 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/?p=6#comment-134</guid>
		<description>Hi Yazid, I believe nhibernate needs that reference for its internal use. Thats not wrong, let it do this thing the best possible way. However that will not make it a many-to-many relationship because bag is at one side only. If you find another solution please let us know.</description>
		<content:encoded><![CDATA[<p>Hi Yazid, I believe nhibernate needs that reference for its internal use. Thats not wrong, let it do this thing the best possible way. However that will not make it a many-to-many relationship because bag is at one side only. If you find another solution please let us know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating one-to-many relationship in NHibernate by Yazid</title>
		<link>http://hashfactor.wordpress.com/2009/03/31/creating-one-to-many-relationship-in-nhibernate/#comment-131</link>
		<dc:creator>Yazid</dc:creator>
		<pubDate>Mon, 27 Apr 2009 08:27:31 +0000</pubDate>
		<guid isPermaLink="false">http://hashfactor.wordpress.com/?p=6#comment-131</guid>
		<description>Thanks for the answer, in my object model Class C does not have a reference to A, I do not need it. The problem that I am having is that it looks like I have a many to many relationship, but in fact I do not have one. In NHibernate is there something like a reference. I my model, the way I see it is that A has a reference to a collection class of type C and B has a reference to a collection of type C.

Cheers
Yaz</description>
		<content:encoded><![CDATA[<p>Thanks for the answer, in my object model Class C does not have a reference to A, I do not need it. The problem that I am having is that it looks like I have a many to many relationship, but in fact I do not have one. In NHibernate is there something like a reference. I my model, the way I see it is that A has a reference to a collection class of type C and B has a reference to a collection of type C.</p>
<p>Cheers<br />
Yaz</p>
]]></content:encoded>
	</item>
</channel>
</rss>
