<?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 - Discussions by wacko</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/wacko/Discussions/RSS"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 - Discussions by wacko</title>
		<link>http://channel9.msdn.com/Niners/wacko/Discussions</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/Niners/wacko/Discussions</link>
	<language>en</language>
	<pubDate>Sun, 19 May 2013 10:35:56 GMT</pubDate>
	<lastBuildDate>Sun, 19 May 2013 10:35:56 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Tech Off - Why does this JOIN take so long?</title>
		<description><![CDATA[<p>Is this MSSQL ? or someother SQL Engine ? I am just curious as to which engine you are using.&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/452861-Why-does-this-JOIN-take-so-long/3c4c04e23a444200b1779deb000323c5#3c4c04e23a444200b1779deb000323c5</link>
		<pubDate>Sun, 18 Jan 2009 11:35:34 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/452861-Why-does-this-JOIN-take-so-long/3c4c04e23a444200b1779deb000323c5#3c4c04e23a444200b1779deb000323c5</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>8</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Issue when binding WinForm constrols to Generics</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">dami said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">wacko said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
You mean I&nbsp;should override the propertys on the concrete interface?<br /><br />But the&nbsp;<strong>MyConcreteClass</strong> inherits the name property from&nbsp;<strong>MyBaseClass</strong>,&nbsp;the same way as&nbsp;<strong>IMyConcreteClass</strong> does from&nbsp;<strong>IMyBaseClass</strong>... does interface inheritance work like this or i'm wrong?&nbsp;:-/<br /><br />thanks for your reply!</div></blockquote>The issue is your List cannot take something of two types, and with the way you have this setup, Your list is only dealing with one or the other type. So in your case you pass in
<b>IMyConcreteClass </b>to your list well <b>IMyConcreteClass </b>does not have an impl of Name so when you pass those objects around its not going to display the name... if you passed in
<b>MyBaseClass </b>to the list you will just get the name and not the description why because
<b>MyBaseClass </b>does not provide an impl for description it knows nothing about it. So when you pass in
<b>MyConcreteClass</b> and it works its because it provides an impl for both name and description.
<br /><br />This is really a flaw in your design, I do not see a reason why you have all these interfaces and abstract classes. I think that
<b>MyConcreteClass</b> should just impl both interfaces and you would be find and then just pass
<b>MyConcreteClass</b> as the list type. Or have the Abstract class impl both interfaces and then have
<b>MyConcreteClass</b> inherit from that and then pass in<b> </b><b>MyBaseClass </b>
to the list<b>.<br /></b></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/444735-Issue-when-binding-WinForm-constrols-to-Generics/3d4195bb68924c99b06f9deb0001b4d6#3d4195bb68924c99b06f9deb0001b4d6</link>
		<pubDate>Sun, 23 Nov 2008 05:08:12 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/444735-Issue-when-binding-WinForm-constrols-to-Generics/3d4195bb68924c99b06f9deb0001b4d6#3d4195bb68924c99b06f9deb0001b4d6</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Issue when binding WinForm constrols to Generics</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">dami said:</div><div class="quoteText">Here is the code. <a href="http://ymlz0a.bay.livefilestore.com/y1piuuG1V5b6ifWJ4PX-zeZZub44mQhAZ53gvDas_q5wqSdMmokVzNbh1nMmxLLwsadA1qfrhGCRVY/BindingGenericsIssue.zip?download">
[DOWNLOAD]</a> <br /><br /><br /><br />Actually it works perfect if I replece the&nbsp;<strong>List&lt;IMyConcreteClass&gt;</strong> with a&nbsp;<strong>List&lt;MyConcreteClass&gt;
</strong><img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-7.gif" alt="Perplexed"> </div></blockquote>The issue here is caused by the fact that the item your putting into the List does not have a get or set for name your IMyBaseClass does, so
 this does not work out well.&nbsp; How you got it to work correctly was because you passed in an item that had both a get and set for both string items.
<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/444735-Issue-when-binding-WinForm-constrols-to-Generics/4c62ebf902b24091a4899deb0001b482#4c62ebf902b24091a4899deb0001b482</link>
		<pubDate>Sun, 23 Nov 2008 02:44:45 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/444735-Issue-when-binding-WinForm-constrols-to-Generics/4c62ebf902b24091a4899deb0001b482#4c62ebf902b24091a4899deb0001b482</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Scoble, Please Read This</title>
		<description><![CDATA[<p>You know I have not posted in awhile and reading this thread has made me a sad panda. The topic is rather bothersome to be honest. Now I will say I came about channel9 via the powers of google and linking. I of course have blogged about many of the things
 that have gone on here, and in some instances even made an effort to participate in the community and in general find it an interesting place to hang. I still read the forums everyday and have long since stopped watching the video’s as I do think the quality
 of the films has gone down considerably and I have mentioned this in other threads. &nbsp;But on the topics of Scoble’s comments and Charles “What in the hell” moment; I find is sad that Robert has gone about his typical me me me way. He only seems to care about
 stuff when it’s all about him, I do not ever see “us” comments. He comes back with well it was only important when I said something, when I read his comments this seemed like the feeling they possessed.
</p>
<p>This is not uncommon and this is why I do not read his blog but Charles I have to ask, what is the point? You make this sound desperate and your argument sounds like something for the sake of having something to say. The argument does not even sound coherent
 just a bunch of rambling about how Channel 9 is not marketing, which in my opinion is total bs as an idea it’s pure marketing from the start, you do not have be pushing a physical item in order to be marketing something.&nbsp; The pure idea of the site is the marketing
 of the information you provide in your videos and you know that. So that argument is just a lame one and furthermore why does it matter what Robert says? I mean come one when people were making comments like Channel 9 will never make it; I did not see you
 come out and say anything then, why now? Just because Scoble once wore a channel 9 bandanna? When people called you guys out on why your videos where lacking in content that was truly developer oriented you said nothing then. &nbsp;Now I have a great respect for
 you Charles and for the most part enjoy the things you say and the videos you have done but Step down from the podium and go back to your desk and actually do something; come back and fight for something that matters.
</p>
<p>In the words of F. Scott Fitzgerald,</p>
<p>“The test of a first-rate intelligence is the ability to hold two opposed ideas in mind at the same time and still retain the ability to function”</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/253277-Scoble-Please-Read-This/3a4cffdaf72b49ed81cb9dec00661a96#3a4cffdaf72b49ed81cb9dec00661a96</link>
		<pubDate>Tue, 20 Mar 2007 07:56:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/253277-Scoble-Please-Read-This/3a4cffdaf72b49ed81cb9dec00661a96#3a4cffdaf72b49ed81cb9dec00661a96</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>142</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Why do our community projects fall-through?</title>
		<description><![CDATA[<p><blockquote>
<div>jamie wrote:</div>
<div>&#65279;
<p>re: wacko:&nbsp;&nbsp; </p>
<p>true... but dont forget we are in a lull...<br>
vista, office, ie etc all released.<br>
<br>
if we new - OR WERE ASKED - to participate in the design of new version - posting/interest would go up<br>
<br>
all we can do now - is wait - till the alpha or beta of vienna comes or ie8 - then we can make noise like before and be ignored like before - only in greater numbers&nbsp;
<img src="/emoticons/emotion-5.gif" border="0"><br>
<br>
re min: yes it does need changes</p>
</div>
</blockquote>
<br>
<br>
<p>I disagree and here is why… For the longest time we saw a huge amount of videos talking about all these new technologies that Microsoft was working and we saw demo’s of the early stuff and some of the mid-road stuff and now its all done. And this mentality
 is well now that its done we do not need to talk about it anymore. I mean we spent two years looking at all this cool stuff and now that its done there should be no reason why they can’t show us more. I mean a demo video does not need to show me something
 cutting edge, it needs to show me something cool, show me something that someone is working on. We hear about all these projects that MS works on internally and we never see anything about them until they are almost done… Show us some of those, we have a new
 .net version in the wings 3.5 show us some of that. I mean there is a lot of stuff out there that people want to see and now we do not see it anymore.
</p>
<p>On top of that what’s wrong with going back and revisiting old topics; a great example was WCF and WPF we saw all this new stuff and now a lot of it has changed since we last saw it and we get nothing on that. I mean we have seen a couple videos on c&#43;&#43; as
 of late and why not go back and show some tips and tricks and some cool stuff that you can do with what you guys have been working on now for years. Channel 9’s target is developers and revisiting some of these old ideas is not something we look down upon.
 To learn from the pro’s is a great thing and I think we need to see more videos about this sorta stuff. I think the ideas minh has mentioned are also good ones I think we should be able to show movies off on our blogs… I think we should be able to make clips
 and link those over to our sites in an embedded player. &nbsp;I never saw C9 as a place that was only about cutting edge stuff, I saw it as a place where dev’s such as ourselves could see inside the machine and have some sort of communication with MS.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/252443-Why-do-our-community-projects-fall-through/1071b982341a432fbb5b9dec005ac30f#1071b982341a432fbb5b9dec005ac30f</link>
		<pubDate>Mon, 19 Feb 2007 03:30:09 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/252443-Why-do-our-community-projects-fall-through/1071b982341a432fbb5b9dec005ac30f#1071b982341a432fbb5b9dec005ac30f</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>27</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Why do our community projects fall-through?</title>
		<description><![CDATA[<p>I think that the lack of projects is directly related to the way channel 9 has been going in the last 4 or 5 months. I use to check the site almost daily and nowadays I find myself checking it a lot less frequently as there is just nothing to see.&nbsp; I mean
 sure sometimes we see a new video and some new screencasts but for the most part the movies are all talk and NO DEMO’s not to dog on Charles and Rory and all the people who work on channel 9 but the quality as of late has been dropping fast. So what I think
 happens is that less and less people tend to show up and a community will not do well in a community project if there is no community to work on it. I see a lot less Tech questions in the Techoff forums and I see less interesting stuff in The Coffeehouse forums
 and I find that what does end up there is just sub-par to what has been there in the past. I mean you could post something in the Techoff forums and by the end of the day it would be on page 2 or 3. Nowadays it would seem that in many cases it takes 2 or 3
 days before that happens. I think the reason the community projects fail is because the community in channel 9 is moving onto other things.
</p>
<p>I would love to see something come out of the talent that we posses on this site but I do not see it happening until the powers to be do something to invoke the community to get involved again and I think that invocation will be in the form of better quality
 videos and better site interaction. I am sorry to say this but atleast when Scobble’s was making videos they had a bang to them and some of the best videos I have seen come from Charles and his constant detailed questioning and as of late these things have
 fallen to the wayside and thus I think there has been a lost interest in C9.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/252443-Why-do-our-community-projects-fall-through/15d97daad50447c09db49dec005ac23c#15d97daad50447c09db49dec005ac23c</link>
		<pubDate>Mon, 19 Feb 2007 01:37:26 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/252443-Why-do-our-community-projects-fall-through/15d97daad50447c09db49dec005ac23c#15d97daad50447c09db49dec005ac23c</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>27</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - This code smells</title>
		<description><![CDATA[<p>The issue I see with this block of code is that it does not protect itself from itself… Whenever you get into the realm of locking resources when dealing with threads it is wise to verify that u can indeed lock the resource.. Example let say somehow you
 got this code to execute twice, how does it know that you have already locked or unlock the resource? Well the answer based on this code is it does not, it has no clue as to whether user is currently being used on another thread or not, which will cause some
 nasty error that will make you smash ahead against the wall. So what’s the answer to this issue? Well once again .net has done the work for you, in what they call an Interlocked, the easy way of looking at this is it compares values and depending on the returned
 value will indicate whether there is a lock currently on the method or not.&nbsp; So how would this work into your example is as following:<br>
<br>
private static int currentlyinuse = 0;</p>
<p>private void cacheUser(User user)<br>
{<br>
&nbsp;&nbsp; if (0 == Interlocked.Exchange(ref currentlyinuse, 1))<br>
&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; userLock.AcquireReaderLock(Timeout.Infinite);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; try<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!_users.TryGetValue(user.Email, out user))<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; userLock.UpgradeToWriterLock(Timeout.Infinite);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; _users.Add(user.Email, user);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; finally<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; userLock.ReleaseLock();<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Interlocked.Exchange(ref currentlyinuse, 0);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>
&nbsp;&nbsp; }<br>
}</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/249870-This-code-smells/397df617fbf84ac1b04e9dea014ca4c0#397df617fbf84ac1b04e9dea014ca4c0</link>
		<pubDate>Mon, 13 Nov 2006 08:28:53 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/249870-This-code-smells/397df617fbf84ac1b04e9dea014ca4c0#397df617fbf84ac1b04e9dea014ca4c0</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Upgrading to Ubuntu 6.10</title>
		<description><![CDATA[<p>I upgraded my work laptop to 6.10 yesterday and I will say what a chore... everything was good until it somehow uninstalled xserv and pwned my video. Since ATI has some lame drivers and when i finally figured out that it had uninstalled xserv... then everything
 else was good to go.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/245276-Upgrading-to-Ubuntu-610/13980adfbe554b29a8e39dec00287bea#13980adfbe554b29a8e39dec00287bea</link>
		<pubDate>Sat, 28 Oct 2006 23:50:28 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/245276-Upgrading-to-Ubuntu-610/13980adfbe554b29a8e39dec00287bea#13980adfbe554b29a8e39dec00287bea</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Run SqlScript from ado</title>
		<description><![CDATA[<p>well you could still do that and just remove the go statements... with something like
<br>
<br>
string sql = file.readtoend()<br>
<br>
Regex regex = new Regex(&quot;^GO&quot;,Regex.IgnoreCase | Regex.Multiline)<br>
string[] lines = regex.split(sql)<br>
<br>
<br>
and then foreach the lines and then execute each line. if it has a value<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/228988-Run-SqlScript-from-ado/dc29e0d8146f4a91bd5a9dea01487298#dc29e0d8146f4a91bd5a9dea01487298</link>
		<pubDate>Sat, 16 Sep 2006 18:20:52 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/228988-Run-SqlScript-from-ado/dc29e0d8146f4a91bd5a9dea01487298#dc29e0d8146f4a91bd5a9dea01487298</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Launching Window from XBAP</title>
		<description><![CDATA[<p>long time since I have posted here but seeing that Jamie movie just inspired me to do so.
<br>
<br>
I have to ask why you would want to launch a window from XBAP ? why not just launch a normal window from HTML and the host the XBAP content within that window.&nbsp; From what I saw in the video it did not look like XBAP was ment to build applications in the sence
 that we see web applications. To me it seemed more like a competitor to something like Flash and is more in the order of presentation. While you could build a full on application I am sure, just as you could with Flash;I think its main idea would be to stay
 self contained, atleast thats what I got from the video. someone can correct me if I am wrong.
<br>
<br>
You would just host the content within the XBAP; now one could I am sure see something like pop-up menus etc.. and maybe that would be self containted inside the XBAP iframe but I did not see anything that said it would load up a window or anything from the
 outside. just as flash does really.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/210122-Launching-Window-from-XBAP/0c597a3e7500475092a49dea0143e9dc#0c597a3e7500475092a49dea0143e9dc</link>
		<pubDate>Wed, 19 Jul 2006 09:30:48 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/210122-Launching-Window-from-XBAP/0c597a3e7500475092a49dea0143e9dc#0c597a3e7500475092a49dea0143e9dc</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>10</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - XML view in html</title>
		<description><![CDATA[<p>I do not seem to have this issue with the same xml posted, I created two files and the xsl file and put them in a sub folder and it works fine. do you get any errors when you put them in the sub folder or does the xml just show up ?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/177009-XML-view-in-html/0f530f37cd8c47249b439deb01519c12#0f530f37cd8c47249b439deb01519c12</link>
		<pubDate>Wed, 12 Apr 2006 11:35:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/177009-XML-view-in-html/0f530f37cd8c47249b439deb01519c12#0f530f37cd8c47249b439deb01519c12</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - AD replication issues</title>
		<description><![CDATA[<p>hey does anyone know anywhere to get some infomration on replication issues on AD.
<br>
<br>
ailed with the following status:<br>
&nbsp;<br>
&nbsp;Access is denied.<br>
&nbsp;<br>
&nbsp;The record data is the status code.&nbsp; This operation will be retried. <br>
<br>
is the error we are getting and I have searched up and down the support docs from MS and nothing seem to have fixed the issue. Sadly we cannot remove the domain and re-add it as it would have a huge impact on service.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/175307-AD-replication-issues/175307#175307</link>
		<pubDate>Thu, 06 Apr 2006 00:11:28 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/175307-AD-replication-issues/175307#175307</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>1</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Apple introduces Boot Camp, allows XP to install on Intel Macs</title>
		<description><![CDATA[<p>I disagree; I think that this will not make much of a difference. Now let’s step back and take a look at this. The Intel based-macs are non-upgradeable after purchase. Meaning what you buy is what you get. Second my new x86 Imac just cost me 2 grand with
 so so hardware in it. I have yet to see why this is so cool. I am going to spend 2 grand on a so so windows xp machine just so I can run os x and windows xp side-by-side. Why doesn’t Apple go the other way around and let anyone run OSX on any piece of hardware.
 I can tell you why they won’t, because they would not make any money. I cannot justify a Mac because of the costs of hardware not because it could never run my windows based applications. Of course like many people we assumed that when Apple finally put out
 the x86 based Macs we would see a cut in costs to there hardware and this has hardly been the case.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/175011-Apple-introduces-Boot-Camp-allows-XP-to-install-on-Intel-Macs/8da61cd12fb4483d89dd9deb014ed101#8da61cd12fb4483d89dd9deb014ed101</link>
		<pubDate>Wed, 05 Apr 2006 16:00:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/175011-Apple-introduces-Boot-Camp-allows-XP-to-install-on-Intel-Macs/8da61cd12fb4483d89dd9deb014ed101#8da61cd12fb4483d89dd9deb014ed101</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>59</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to send a PDF to a printer?</title>
		<description><![CDATA[<p>I can give ya a little info on this as a former Adobe Employe and specificlly dealing with Acrobat. They do have a SDK that allows you to work with PDFs but its not free, it does work in both manged and unmanged code and they give some good examples done
 in C# and VB.net but here again its not free. I would look to some of the free PDF stuff and that may work but this is workable if you have the SDK because you can actually create a PDF object and load in that PDF and then use c# to print it like you would
 anything else.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/151242-How-to-send-a-PDF-to-a-printer/ba2e503e73e149d4b99d9dea013487f2#ba2e503e73e149d4b99d9dea013487f2</link>
		<pubDate>Sun, 15 Jan 2006 03:50:49 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/151242-How-to-send-a-PDF-to-a-printer/ba2e503e73e149d4b99d9dea013487f2#ba2e503e73e149d4b99d9dea013487f2</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>20</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Remote Desktop Sharing</title>
		<description><![CDATA[<p>well I would like to build an app that had desktop sharing in it<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/145518-Remote-Desktop-Sharing/e37cf9c404f541f7a3269dea0132c8eb#e37cf9c404f541f7a3269dea0132c8eb</link>
		<pubDate>Tue, 27 Dec 2005 01:39:41 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/145518-Remote-Desktop-Sharing/e37cf9c404f541f7a3269dea0132c8eb#e37cf9c404f541f7a3269dea0132c8eb</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Remote Desktop Sharing</title>
		<description><![CDATA[<p>does anyone know where to look for information/resource on remote desktop sharing?? something like MSN or LiveMeeting that allows more then one person to control the desktop? I know that Terminal Services has a Active X control but that does not help me
 much. I would like something in c# if possible but any lang will do. Thanks</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/145518-Remote-Desktop-Sharing/145518#145518</link>
		<pubDate>Mon, 26 Dec 2005 22:32:36 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/145518-Remote-Desktop-Sharing/145518#145518</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Setting up roaming profiles</title>
		<description><![CDATA[<p><a href="http://www.microsoft.com/technet/prodtechnol/windowsserver2003/library/DepKit/b41402c2-c982-4bfb-891e-91b47f211e18.mspx">here</a><br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/145323-Setting-up-roaming-profiles/9354d325ed634caf873c9dea0132b14f#9354d325ed634caf873c9dea0132b14f</link>
		<pubDate>Sun, 25 Dec 2005 20:36:27 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/145323-Setting-up-roaming-profiles/9354d325ed634caf873c9dea0132b14f#9354d325ed634caf873c9dea0132b14f</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>2</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - IMAP4 access using Visual c# express</title>
		<description><![CDATA[<p>It is possible, you could always user a TCPClient and a NetworkStream and send over the IMAP4 commands to the server and retrieve the information you wanted.
<br>
<a href="http://www.codeproject.com/csharp/POPApp.asp"><br>
http://www.codeproject.com/csharp/POPApp.asp</a><br>
<br>
Thats how pop3 works, but the brunt of it would be the same. <br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/145188-IMAP4-access-using-Visual-c-express/73952a6036474c24a0d69dea0132ab6c#73952a6036474c24a0d69dea0132ab6c</link>
		<pubDate>Sat, 24 Dec 2005 19:36:40 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/145188-IMAP4-access-using-Visual-c-express/73952a6036474c24a0d69dea0132ab6c#73952a6036474c24a0d69dea0132ab6c</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Did VS2005 Ship Too Early?</title>
		<description><![CDATA[<p>I can't say I have run into very many issues in my uses of it. Nteam has been deving on its since B2 and other then VSTF its not been that bad at all. Aside from the help being slow I have had only one crash.&nbsp; all though I will say one thing that really
 does kinda get at me is code snippets in vb.net they are way broken.<br>
<br>
Overall it has come along way since some of the first version we saw and to be all honest this product has really gone the paces when it came to user feedback. So in the end I think its worth an upgrade as I have not come across anything that prevents me from
 getting the work done I need to.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/130060-Did-VS2005-Ship-Too-Early/b90eea4109e244b2a2ee9deb0107effa#b90eea4109e244b2a2ee9deb0107effa</link>
		<pubDate>Sat, 05 Nov 2005 14:55:05 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/130060-Did-VS2005-Ship-Too-Early/b90eea4109e244b2a2ee9deb0107effa#b90eea4109e244b2a2ee9deb0107effa</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>61</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Enumerations and Nothing</title>
		<description><![CDATA[<p>I do not think I was ever making the link that infered types was late binding. I was just commenting that c# needs late binding.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/126222-Enumerations-and-Nothing/7306b6c8949c4734be599dea012e2e04#7306b6c8949c4734be599dea012e2e04</link>
		<pubDate>Sun, 30 Oct 2005 11:28:00 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/126222-Enumerations-and-Nothing/7306b6c8949c4734be599dea012e2e04#7306b6c8949c4734be599dea012e2e04</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>28</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Enumerations and Nothing</title>
		<description><![CDATA[<p><blockquote>
<div>HumanCompiler wrote:</div>
<div>Why are we even discussing late binding?&nbsp; I don't get it.&nbsp; Infered Types != Late Binding<br>
<br>
Infered Types does not mean we're declaring a variable as object.&nbsp; It means whatever it's initial value is (i.e. the first time it's set) its type will be sort of defined and can't be changed after that.<br>
<br>
var x = &quot;blah&quot;;<br>
<br>
is not really any different than...<br>
<br>
string x = &quot;blah&quot;;<br>
<br>
That said, again, Infered Types isn't really for situations like that.&nbsp; It's just a simple example.</div>
</blockquote>
<br>
<br>
<br>
oh we got off track <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-4.gif' alt='Tongue Out' /> <br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/126222-Enumerations-and-Nothing/d2a5359b40d044f0bbca9dea012e2db1#d2a5359b40d044f0bbca9dea012e2db1</link>
		<pubDate>Fri, 28 Oct 2005 14:48:13 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/126222-Enumerations-and-Nothing/d2a5359b40d044f0bbca9dea012e2db1#d2a5359b40d044f0bbca9dea012e2db1</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>28</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Enumerations and Nothing</title>
		<description><![CDATA[<p><blockquote>
<div>AndyC wrote:</div>
<div>
<p>Late binding is lazy.</p>
<p>You can achieve the things you want to do by defining and implementing clear interfaces. It takes a little more design effort but is more than worth it in terms of what can be gained at compile time (both in terms of catching errors earlier and better optimisation).</p>
</div>
</blockquote>
<br>
<br>
but thats the thing we are looking beyond compile time... late-binding really gets into runtime dynamics, what if I wanted to use different types in the same method and not really knowing what types would be selected by the user at runtime ? an interface does
 me no good there.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/126222-Enumerations-and-Nothing/60982d8e0a6748c9afa99dea012e2d87#60982d8e0a6748c9afa99dea012e2d87</link>
		<pubDate>Fri, 28 Oct 2005 14:47:26 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/126222-Enumerations-and-Nothing/60982d8e0a6748c9afa99dea012e2d87#60982d8e0a6748c9afa99dea012e2d87</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>28</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Enumerations and Nothing</title>
		<description><![CDATA[<p>why not ? I mean is there anything bad about it? I mean one could make the argument that hey why fail at runtime and clean up the stuff left over when we can just clean up at compile time because we know it would fail.<br>
<br>
If you look at examples late binding could be a powerful feature:<br>
<br>
Dim dialog as SomeDialog<br>
<br>
dialog = GetDialogWindow()<br>
<br>
dialog.Background = &quot;Red&quot;<br>
<br>
as in c# I have to deal with this at compile time same example in c#<br>
<br>
SomeDialog dialog;<br>
<br>
dialog = GetDialogWindow();<br>
<br>
typeof(SomeDialog).InvokeMethod(&quot;Background&quot;,BindingFlags.Public|BindingFlags.Instance,null,new object[]{&quot;Red&quot;,null);<br>
<br>
<p>here again one could make the argument that hey we should know if this was going to fail at compile time and just clean up from there, as other could make the argument that well we can deal with it at runtime I mean if we design the application to deal with
 the issue at runtime they why does it matter. I just think sometimes late binding makes things easier if you know what your doing. I this would be a great example of where VB.net looks better <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-4.gif' alt='Tongue Out' /> but in my opinion allows for a much richer and more dynamic lang</p>
<p>Just another example and it has been shown here in channel 9 before is the following :</p>
<br>
<p></p>
Class Friend<br>
&nbsp;&nbsp;&nbsp; public Name as String<br>
End Class<br>
<br>
Class Person<br>
&nbsp;&nbsp;&nbsp; public Name as String<br>
End Class<br>
<br>
Module Module1<br>
<br>
&nbsp;&nbsp;&nbsp; Sub PrintName(Byval obj)<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Console.Writeline(obj.Name)<br>
&nbsp;&nbsp;&nbsp; End Sub<br>
<br>
&nbsp;&nbsp;&nbsp; Sub Main()<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Dim f as New Friend<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; f.Name = &quot;Alan&quot;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; printname(f)<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Dim p as New Person<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; p.Name = &quot;Andrew&quot;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; printname(p)<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Console.Readline()<br>
End Module<br>
<br>
<p>In this we have no clue what’s going into the PrintName method and as long as we know it has a name prop it doesn’t matter. &nbsp;I do not have to deal with knowing the type just as long as it has the method I call on the object. If you think about it, you could
 make the argument that it enforces good application as I am sure those opposed to late binding make the argument that it could fail and we have a giant mess etc etc but the reality is that if your use late binding you should write application that takes into
 account that its being used and throw these in a try/catch etc..</p>
<p>&nbsp;I mean other places that it could be utilized are in Data driven applications where sometimes data types are always changing, I could go from an int to float or float to a double or what ever and as we get into SQL 2005 where we can have user defined types
 late binding seem even more useful as long as we know that a float has an add method or whatever we are not left to having to know the type and rewriting code to meets the needs of changes.</p>
<p>&nbsp; I mean to do this in C# is to much work and really limits my scope as to what can happen at runtime. I mean as you see in the example above its far worse in my opinion to lose time over having to use reflection, then just using late binding and taking
 the risk of it failing. I mean if your not implementing checking on any level then you might want to rethink your job situation anyway as I am sure you would not have it for much longer.</p>
<br>
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/126222-Enumerations-and-Nothing/ad793d35928e4cb587269dea012e2d0a#ad793d35928e4cb587269dea012e2d0a</link>
		<pubDate>Fri, 28 Oct 2005 11:51:27 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/126222-Enumerations-and-Nothing/ad793d35928e4cb587269dea012e2d0a#ad793d35928e4cb587269dea012e2d0a</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>28</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Enumerations and Nothing</title>
		<description><![CDATA[<p>I mentioned this in my above post <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /> <br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/126222-Enumerations-and-Nothing/12c2ebde7b35418da95b9dea012e2c58#12c2ebde7b35418da95b9dea012e2c58</link>
		<pubDate>Fri, 28 Oct 2005 06:09:23 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/126222-Enumerations-and-Nothing/12c2ebde7b35418da95b9dea012e2c58#12c2ebde7b35418da95b9dea012e2c58</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>28</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Enumerations and Nothing</title>
		<description><![CDATA[<p>I am not stating that I personally object to either, I happen to like c# over vb.net but that does not mean that I do not happen to program in vb.net. What I stated is not a lie its is the turth that some people take a distate in VB because of is messyness
 per say. This does not reflect my personal opinion as I program in both. I mean there are jobs out that people who program in vb.net will not always get picked over those who program in c# if the job requires c#. I mean there is a reality that some just dislike
 it more then others.<br>
<br>
To mention on what blowdart stated one reason we often times could not see something like new arraylist Al; is because of the very nature of c# and the way it creates its objects over VB. One thing I would like to see come to c# is late binding which you can
 do but it requires far more work then that of vb.net. I mean <br>
<br>
Var x = 1;<br>
<br>
x = &quot;hello&quot;; <br>
<br>
that just doesn't work and to me that seems lacking, it would be nice at runtime If could define what x was but sadly that is not a feature of the c# lang.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/126222-Enumerations-and-Nothing/026521ba583a408b86219dea012e2c03#026521ba583a408b86219dea012e2c03</link>
		<pubDate>Fri, 28 Oct 2005 06:08:39 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/126222-Enumerations-and-Nothing/026521ba583a408b86219dea012e2c03#026521ba583a408b86219dea012e2c03</guid>
		<dc:creator>wacko</dc:creator>
		<slash:comments>28</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wacko/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>