<?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: Cannot Access a Disposed Object</title>
	<atom:link href="http://ellisweb.net/2007/01/cannot-access-a-disposed-object/feed/" rel="self" type="application/rss+xml" />
	<link>http://ellisweb.net/2007/01/cannot-access-a-disposed-object/</link>
	<description>Thoughts, Articles &#38; Links on Programming &#38; Technology by Yaakov Ellis</description>
	<lastBuildDate>Tue, 31 Aug 2010 09:10:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Natural Code</title>
		<link>http://ellisweb.net/2007/01/cannot-access-a-disposed-object/comment-page-1/#comment-165498</link>
		<dc:creator>Natural Code</dc:creator>
		<pubDate>Mon, 02 Aug 2010 19:41:07 +0000</pubDate>
		<guid isPermaLink="false">http://ellisweb.net/2007/01/cannot-access-a-disposed-object/#comment-165498</guid>
		<description>thanks buddy
+10
;)</description>
		<content:encoded><![CDATA[<p>thanks buddy<br />
+10<br />
;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nishantha</title>
		<link>http://ellisweb.net/2007/01/cannot-access-a-disposed-object/comment-page-1/#comment-147212</link>
		<dc:creator>Nishantha</dc:creator>
		<pubDate>Sun, 21 Jun 2009 19:35:13 +0000</pubDate>
		<guid isPermaLink="false">http://ellisweb.net/2007/01/cannot-access-a-disposed-object/#comment-147212</guid>
		<description>#region Property: Contact
        private Contact current;
        /// 
        /// Gets/sets the Contact
        /// 
        public Contact Contact
        {
            [System.Diagnostics.DebuggerStepThrough]
            get
            {
                if (this.current == null)
                    this.current = new Contact();
                if (this.current != null &amp;&amp; this.current.IsDisposed)
                {
                    this.current = null;
                    this.current = new Contact();
                }
                return this.current;
            }
        }
        #endregion</description>
		<content:encoded><![CDATA[<p>#region Property: Contact<br />
        private Contact current;<br />
        ///<br />
        /// Gets/sets the Contact<br />
        ///<br />
        public Contact Contact<br />
        {<br />
            [System.Diagnostics.DebuggerStepThrough]<br />
            get<br />
            {<br />
                if (this.current == null)<br />
                    this.current = new Contact();<br />
                if (this.current != null &amp;&amp; this.current.IsDisposed)<br />
                {<br />
                    this.current = null;<br />
                    this.current = new Contact();<br />
                }<br />
                return this.current;<br />
            }<br />
        }<br />
        #endregion</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Poolee</title>
		<link>http://ellisweb.net/2007/01/cannot-access-a-disposed-object/comment-page-1/#comment-125088</link>
		<dc:creator>Poolee</dc:creator>
		<pubDate>Fri, 02 Jan 2009 03:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://ellisweb.net/2007/01/cannot-access-a-disposed-object/#comment-125088</guid>
		<description>Thanks, also solved my problem.  I did consider setting a flag, then checking the flag during .Load... but this seemed messy.  Cheers, and Happy New Year.  Paul.</description>
		<content:encoded><![CDATA[<p>Thanks, also solved my problem.  I did consider setting a flag, then checking the flag during .Load&#8230; but this seemed messy.  Cheers, and Happy New Year.  Paul.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loyid Varghese</title>
		<link>http://ellisweb.net/2007/01/cannot-access-a-disposed-object/comment-page-1/#comment-114325</link>
		<dc:creator>Loyid Varghese</dc:creator>
		<pubDate>Tue, 07 Oct 2008 07:50:53 +0000</pubDate>
		<guid isPermaLink="false">http://ellisweb.net/2007/01/cannot-access-a-disposed-object/#comment-114325</guid>
		<description>Thanks a lot !It solved my problem !</description>
		<content:encoded><![CDATA[<p>Thanks a lot !It solved my problem !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anoop Shrivastava</title>
		<link>http://ellisweb.net/2007/01/cannot-access-a-disposed-object/comment-page-1/#comment-104360</link>
		<dc:creator>Anoop Shrivastava</dc:creator>
		<pubDate>Wed, 03 Sep 2008 12:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://ellisweb.net/2007/01/cannot-access-a-disposed-object/#comment-104360</guid>
		<description>I Got an error message &quot;Can&#039;t access a disposed object&quot;
While clicking on button to show the form once viewed.</description>
		<content:encoded><![CDATA[<p>I Got an error message &#8220;Can&#8217;t access a disposed object&#8221;<br />
While clicking on button to show the form once viewed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexandr</title>
		<link>http://ellisweb.net/2007/01/cannot-access-a-disposed-object/comment-page-1/#comment-98651</link>
		<dc:creator>Alexandr</dc:creator>
		<pubDate>Sat, 16 Aug 2008 09:31:33 +0000</pubDate>
		<guid isPermaLink="false">http://ellisweb.net/2007/01/cannot-access-a-disposed-object/#comment-98651</guid>
		<description>+5</description>
		<content:encoded><![CDATA[<p>+5</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mjelten</title>
		<link>http://ellisweb.net/2007/01/cannot-access-a-disposed-object/comment-page-1/#comment-82248</link>
		<dc:creator>Mjelten</dc:creator>
		<pubDate>Fri, 13 Jun 2008 08:03:06 +0000</pubDate>
		<guid isPermaLink="false">http://ellisweb.net/2007/01/cannot-access-a-disposed-object/#comment-82248</guid>
		<description>Perfect! Thanks!</description>
		<content:encoded><![CDATA[<p>Perfect! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kiran</title>
		<link>http://ellisweb.net/2007/01/cannot-access-a-disposed-object/comment-page-1/#comment-75562</link>
		<dc:creator>kiran</dc:creator>
		<pubDate>Wed, 30 Apr 2008 03:01:26 +0000</pubDate>
		<guid isPermaLink="false">http://ellisweb.net/2007/01/cannot-access-a-disposed-object/#comment-75562</guid>
		<description>Thanks , it worked well for me</description>
		<content:encoded><![CDATA[<p>Thanks , it worked well for me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nelson</title>
		<link>http://ellisweb.net/2007/01/cannot-access-a-disposed-object/comment-page-1/#comment-48911</link>
		<dc:creator>Nelson</dc:creator>
		<pubDate>Fri, 16 Nov 2007 16:48:22 +0000</pubDate>
		<guid isPermaLink="false">http://ellisweb.net/2007/01/cannot-access-a-disposed-object/#comment-48911</guid>
		<description>Thanks a lot! I have been spent 2 hours to try to figure it out.</description>
		<content:encoded><![CDATA[<p>Thanks a lot! I have been spent 2 hours to try to figure it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jester255</title>
		<link>http://ellisweb.net/2007/01/cannot-access-a-disposed-object/comment-page-1/#comment-41508</link>
		<dc:creator>Jester255</dc:creator>
		<pubDate>Mon, 13 Aug 2007 03:54:04 +0000</pubDate>
		<guid isPermaLink="false">http://ellisweb.net/2007/01/cannot-access-a-disposed-object/#comment-41508</guid>
		<description>Thanks, sorted out my prob.</description>
		<content:encoded><![CDATA[<p>Thanks, sorted out my prob.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
