<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 Forums - Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Tue, 18 Jun 2013 06:26:33 GMT</pubDate>
	<lastBuildDate>Tue, 18 Jun 2013 06:26:33 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>15</c9:totalResults>
	<c9:pageCount>-15</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p>I've got a question about using objects in Visual Basic 2008.</p><p>If I do this:</p><p>Dim joe as Guy</p><p>This is a reference. In order to use joe I must also do this:</p><p>Dim joe as New Guy</p><p>This does what's called instantiate the object. What is the difference? Why do I have to do both before I can use the object? Are there reasons why I would only do the reference and not follow it up with instantiate? What really is going on inside the computer when I do each step? When is memory actually allocated?</p><p>Thanks. I'm new at object oriented programming. I am used to more procedural languages like COBOL.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/844cabb9e341465fbc4e9f4b013f88dc#844cabb9e341465fbc4e9f4b013f88dc</link>
		<pubDate>Fri, 26 Aug 2011 19:23:23 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/844cabb9e341465fbc4e9f4b013f88dc#844cabb9e341465fbc4e9f4b013f88dc</guid>
		<dc:creator>Jeff Wyant</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/pdcjlw1/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p>@<a href="http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate#c844cabb9e341465fbc4e9f4b013f88dc">pdcjlw1</a>:</p><p>The reference created in the first example is indeed a reference, but it's empty. At that point joe is still null. This is useful if you are going to get the actual object from somewhere else and don't need to create a new one. Say, if you had a method that created a Guy object, you would do like so:</p><p><pre class="brush: text">Dim joe as Guy
joe = GuyMethod()</pre></p><p>which is also the same as:</p><p><pre class="brush: vb">dim joe as guy = GuyMethod()</pre></p><p>Really, you don't need to create a reference and instantiate it on different lines.</p><p>This:</p><p><pre class="brush: vb">Dim joe as New Guy</pre></p><p>is the same as:</p><p><pre class="brush: vb">Dim joe as Guy
joe = new Guy</pre></p><p>If you did both lines like you had in your example:</p><p><pre class="brush: vb">Dim Joe as Guy
Dim Joe as New Guy</pre></p><p>You would get a compiler error because you told it to create two separate variables with the same name.</p><p>EDIT: On the subject of learning, you might check out <a href="http://social.msdn.microsoft.com/Search/en-US?query=object%20oriented%20programming%20vb.net&amp;beta=0&amp;ac=8">this search</a>&nbsp;and <a href="http://social.msdn.microsoft.com/Search/en-US?query=object%20oriented%20programming&amp;beta=0&amp;ac=8">this search</a> on MSDN. Some of the articles are a bit old, but the principles are sound.</p><p>I think it's funny that when you include the language you want to use, you get a whole bunch of people obviously looking for people to do their homework for them.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/c31fe291dbd745e5a3cb9f4b01439233#c31fe291dbd745e5a3cb9f4b01439233</link>
		<pubDate>Fri, 26 Aug 2011 19:38:05 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/c31fe291dbd745e5a3cb9f4b01439233#c31fe291dbd745e5a3cb9f4b01439233</guid>
		<dc:creator>kettch</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/kettch/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p>So at the point that I create the reference what occurs in the computer. Is there a variable created with no memory assigned?</p><p>Also do you have a example of a method that would perform the instantiate? What would that look like?</p><p>&nbsp;</p><p>Thanks for your help.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/c62652de3c5948b5ba3a9f4b014a83c8#c62652de3c5948b5ba3a9f4b014a83c8</link>
		<pubDate>Fri, 26 Aug 2011 20:03:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/c62652de3c5948b5ba3a9f4b014a83c8#c62652de3c5948b5ba3a9f4b014a83c8</guid>
		<dc:creator>Jeff Wyant</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/pdcjlw1/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/c62652de3c5948b5ba3a9f4b014a83c8">10 minutes&nbsp;ago</a>,<a href="/Niners/pdcjlw1">pdcjlw1</a> wrote</p><p>So at the point that I create the reference what occurs in the computer. Is there a variable created with no memory assigned?</p><p></p></div></blockquote><p></p><p>The reference takes up memory, too.&nbsp; It's value is the 'where in memory is my variable located'.</p><p>Think of all variables as 2 things, a location and a value.&nbsp;</p><p></p><blockquote><div class="quoteText"><p></p><p>Also do you have a example of a method that would perform the instantiate? What would that look like?</p><p>Thanks for your help.</p><p></p></div></blockquote><p></p><p>Dim joe as Guy = New Guy()</p><p>or, to break it up:</p><p>Dim joe as Guy</p><p>joe = New Guy()</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/b64f1278f36b4b1a80f29f4b014f4f01#b64f1278f36b4b1a80f29f4b014f4f01</link>
		<pubDate>Fri, 26 Aug 2011 20:20:49 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/b64f1278f36b4b1a80f29f4b014f4f01#b64f1278f36b4b1a80f29f4b014f4f01</guid>
		<dc:creator>ScanIAm</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ScanIAm/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p>@<a href="http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate#cc62652de3c5948b5ba3a9f4b014a83c8">pdcjlw1</a>: A reference is just that. It's a pointer to another memory location where the data is held. Here's a <a href="http://msdn.microsoft.com/en-us/magazine/cc301569.aspx">good article</a> on references. It's very old, but from a cursory look it seems like the concepts are still valid.</p><p>An example of a method that instantiates a variable is somewhat simple. First you create the reference in your main class.</p><p><pre class="brush: vb">Dim joe as Guy</pre></p><p>Then you have a method that creates a Guy object. Maybe it gets the data from a database or some other source:</p><p><pre class="brush: vb">Function GetGuy()
    Dim tempGuy as New Guy()
    tempGuy.Name = &quot;Fred&quot;
    tempGuy.Age = 42
    tempGuy.IsAwesome = True

    return tempGuy
end Function</pre></p><p>Then in your application somewhere you can put the result of that method into your empty reference like so:</p><p><pre class="brush: vb">joe = GetGuy()</pre></p><p>Remember that VB can both create a reference and fill it in one line like this:</p><p><pre class="brush: vb">Dim joe as Guy = GetGuy()</pre></p><p>EDIT: davewill pointed out that in VB only functions return values. I've edited the code for clarity.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/f208c37e125d4abfb11e9f4b0150186e#f208c37e125d4abfb11e9f4b0150186e</link>
		<pubDate>Fri, 26 Aug 2011 20:23:41 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/f208c37e125d4abfb11e9f4b0150186e#f208c37e125d4abfb11e9f4b0150186e</guid>
		<dc:creator>kettch</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/kettch/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p><pre class="brush: vb">Dim Joe as Something</pre></p><p>creates this in memory</p><p>Joe -&gt;</p><p><pre class="brush: vb">Dim Joe as New Something</pre></p><p>creates this is memory</p><p>Joe -&gt; instance of Something</p><p><pre class="brush: vb">Dim Joe as Something
Dim Fred as New Something
Joe = Fred</pre></p><p>creates this:</p><p>Joe -&gt; instance of Something &lt;- Fred</p><p>Both references are pointing to the same instance.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/77bfc5621dd84ee987de9f4b0156eef6#77bfc5621dd84ee987de9f4b0156eef6</link>
		<pubDate>Fri, 26 Aug 2011 20:48:34 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/77bfc5621dd84ee987de9f4b0156eef6#77bfc5621dd84ee987de9f4b0156eef6</guid>
		<dc:creator>Scott</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/spivonious/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate#cf208c37e125d4abfb11e9f4b0150186e">kettch</a>: one minor edit.&nbsp; Subs don't return values in VB.</p><p><pre class="brush: vb">Function GetGuy() as Guy
    Dim tempGuy as New Guy
    tempGuy.Name = &quot;Fred&quot;
    tempGuy.Age = 42
    tempGuy.IsAwesome = True
    return tempGuy
end function</pre></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/7a4d2f0d9d4b464fa79c9f4b015a097b#7a4d2f0d9d4b464fa79c9f4b015a097b</link>
		<pubDate>Fri, 26 Aug 2011 20:59:52 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/7a4d2f0d9d4b464fa79c9f4b015a097b#7a4d2f0d9d4b464fa79c9f4b015a097b</guid>
		<dc:creator>Dave Williamson</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/davewill/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p>Expanding on spivonious ...</p><p>&nbsp;</p><p><pre class="brush: vb">Dim Joe as Guy
'Joe is nothing at this point

Dim Fred as New Guy
'Fred is something, a newly initialized Guy (blank name, 0 age, not awesome)

Joe = Fred
'Now Joe points to the same thing as Fred

Joe = GetGuy()
'Now Joe points to a new instance of Guy (a initialized 42 year old awesome guy named Fred)
'Fred still points to his original initialized Guy (blank name, 0 age, not awesome)

Function GetGuy() as Guy
    Dim tempGuy as New Guy
    tempGuy.Name = &quot;Fred&quot;
    tempGuy.Age = 42
    tempGuy.IsAwesome = True
    return tempGuy
End Function


Private Class Guy
  'Property syntax shortened for brevity
  Public Property Name() as String
  Public Property Age() as Integer
  Public Property IsAwesome() as Boolean
End Class
</pre></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/4be88a1c8c20457d858a9f4b015e3ab9#4be88a1c8c20457d858a9f4b015e3ab9</link>
		<pubDate>Fri, 26 Aug 2011 21:15:08 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/4be88a1c8c20457d858a9f4b015e3ab9#4be88a1c8c20457d858a9f4b015e3ab9</guid>
		<dc:creator>Dave Williamson</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/davewill/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/7a4d2f0d9d4b464fa79c9f4b015a097b">30 minutes&nbsp;ago</a>,<a href="http://channel9.msdn.com/Niners/davewill">davewill</a> wrote</p><p>@<a href="http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate#cf208c37e125d4abfb11e9f4b0150186e">kettch</a>: one minor edit.&nbsp; Subs don't return values in VB.</p><div class="syntaxhighlighterHolder"><div id="highlighter_855630" class="syntaxhighlighter vb ie"><table border="0" cellspacing="0" cellpadding="0"><tbody><tr><td class="gutter"><div class="line number1 index0 alt2">1</div><div class="line number2 index1 alt1">2</div><div class="line number3 index2 alt2">3</div><div class="line number4 index3 alt1">4</div><div class="line number5 index4 alt2">5</div><div class="line number6 index5 alt1">6</div><div class="line number7 index6 alt2">7</div></td><td class="code"><div class="container"><div class="line number1 index0 alt2"><code class="vb keyword">Function</code> <code class="vb plain">GetGuy() as Guy </code></div><div class="line number2 index1 alt1"><code class="vb spaces">&nbsp;&nbsp;&nbsp;&nbsp;</code><code class="vb keyword">Dim</code><code class="vb plain">tempGuy as</code><code class="vb keyword">New</code> <code class="vb plain">Guy </code></div><div class="line number3 index2 alt2"><code class="vb spaces">&nbsp;&nbsp;&nbsp;&nbsp;</code><code class="vb plain">tempGuy.Name =</code><code class="vb string">&quot;Fred&quot;</code></div><div class="line number4 index3 alt1"><code class="vb spaces">&nbsp;&nbsp;&nbsp;&nbsp;</code><code class="vb plain">tempGuy.Age = 42</code></div><div class="line number5 index4 alt2"><code class="vb spaces">&nbsp;&nbsp;&nbsp;&nbsp;</code><code class="vb plain">tempGuy.IsAwesome =</code><code class="vb keyword">True</code></div><div class="line number6 index5 alt1"><code class="vb spaces">&nbsp;&nbsp;&nbsp;&nbsp;</code><code class="vb plain">return tempGuy</code></div><div class="line number7 index6 alt2"><code class="vb plain">end function</code></div></div></td></tr></tbody></table></div></div><p></p></div></blockquote><p></p><p>Hah! You caught me. I've been working in c# for so long that the context switch defeated me.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/1298816132da4d4296519f4b0162e1b3#1298816132da4d4296519f4b0162e1b3</link>
		<pubDate>Fri, 26 Aug 2011 21:32:05 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/1298816132da4d4296519f4b0162e1b3#1298816132da4d4296519f4b0162e1b3</guid>
		<dc:creator>kettch</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/kettch/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate#c1298816132da4d4296519f4b0162e1b3">kettch</a>: nah!&nbsp; i could tell you wrote it quick in a text editor.&nbsp; mainly didn't want to OP to get off track.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/12397d2d44c74bfcb4869f4b0167a194#12397d2d44c74bfcb4869f4b0167a194</link>
		<pubDate>Fri, 26 Aug 2011 21:49:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/12397d2d44c74bfcb4869f4b0167a194#12397d2d44c74bfcb4869f4b0167a194</guid>
		<dc:creator>Dave Williamson</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/davewill/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p>@<a href="http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate#c12397d2d44c74bfcb4869f4b0167a194">davewill</a>: It was hard enough too keep the semicolons out of there. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-4.gif?v=c9' alt='Tongue Out' /></p><p>Take a look at line two of the code in my quote of your comment. Does it look like the forum stripped out some spaces? I've seen that in other posts in the past few days, where a comment has had random spaces removed. Weird.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/e437e22d458b433bb23f9f4b016e04bd#e437e22d458b433bb23f9f4b016e04bd</link>
		<pubDate>Fri, 26 Aug 2011 22:12:37 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/e437e22d458b433bb23f9f4b016e04bd#e437e22d458b433bb23f9f4b016e04bd</guid>
		<dc:creator>kettch</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/kettch/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate#ce437e22d458b433bb23f9f4b016e04bd">kettch</a>: sure enough.&nbsp; that's odd.&nbsp; even odder that the human brain can subconsciously compensate.&nbsp; i didn't even notice that until you pointed it out.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/56ddf125058c4d6cb5ed9f4b01721854#56ddf125058c4d6cb5ed9f4b01721854</link>
		<pubDate>Fri, 26 Aug 2011 22:27:28 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/56ddf125058c4d6cb5ed9f4b01721854#56ddf125058c4d6cb5ed9f4b01721854</guid>
		<dc:creator>Dave Williamson</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/davewill/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/56ddf125058c4d6cb5ed9f4b01721854">4 minutes&nbsp;ago</a>,<a href="http://channel9.msdn.com/Niners/davewill">davewill</a> wrote</p><p>@<a href="http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate#ce437e22d458b433bb23f9f4b016e04bd">kettch</a>: sure enough.&nbsp; that's odd.&nbsp; even odder that the human brain can subconsciously compensate.&nbsp; i didn't even notice that until you pointed it out.</p><p></p></div></blockquote><p></p><p>I just went through the last few threads I've participated in, and the only quote boxes that have this problems are instances where people have quoted something<em>I</em> said.</p><p>Curiouser and curiouser...</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/c1ad150cfe7d4ad580a69f4b0174402f#c1ad150cfe7d4ad580a69f4b0174402f</link>
		<pubDate>Fri, 26 Aug 2011 22:35:19 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/c1ad150cfe7d4ad580a69f4b0174402f#c1ad150cfe7d4ad580a69f4b0174402f</guid>
		<dc:creator>kettch</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/kettch/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/c1ad150cfe7d4ad580a69f4b0174402f">6 minutes&nbsp;ago</a>,<a href="http://channel9.msdn.com/Niners/kettch">kettch</a> wrote</p><p>*snip*</p><p>I just went through the last few threads I've participated in, and the only quote boxes that have this problems are instances where people have quoted<strong> something<em>I</em></strong> said.</p><p>Curiouser and curiouser...</p><p></p></div></blockquote><p></p><p>Yargh! When I hit edit, there is definitely a space between &quot;something&quot; and &quot;I&quot;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/2475306320984c0180fb9f4b01769f3a#2475306320984c0180fb9f4b01769f3a</link>
		<pubDate>Fri, 26 Aug 2011 22:43:57 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/2475306320984c0180fb9f4b01769f3a#2475306320984c0180fb9f4b01769f3a</guid>
		<dc:creator>kettch</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/kettch/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Visual Basic.Net Reference vs Instantiate</title>
		<description><![CDATA[<p>At times like this I like to fall back on this <a href="http://www.youtube.com/watch?v=6pmWojisM_E">http://www.youtube.com/watch?v=6pmWojisM_E</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/3a88465cc83842079cf79f4c000adcf1#3a88465cc83842079cf79f4c000adcf1</link>
		<pubDate>Sat, 27 Aug 2011 00:39:33 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Visual-BasicNet-Reference-vs-Instantiate/3a88465cc83842079cf79f4c000adcf1#3a88465cc83842079cf79f4c000adcf1</guid>
		<dc:creator>PerfectPhase</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/PerfectPhase/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>