<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" media="screen" href="/App_Themes/default/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:evnet="http://www.mscommunities.com/rssmodule/"><channel><title>Entries for section31</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/niners/section31/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Entries for section31</title><link>http://channel9.msdn.com/Niners/section31/</link></image><description>Entries, comments and threads posted by section31</description><link>http://channel9.msdn.com/Niners/section31/</link><language>en-us</language><pubDate>Wed, 18 Nov 2009 01:04:59 GMT</pubDate><lastBuildDate>Wed, 18 Nov 2009 01:04:59 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>Ok I'm to stupid for Twitter [Ok I'm to stupid for Twitter]</title><description>&lt;p&gt;I don't know waht I'm missing but I'm unable to send a tweet to @ch9live.&lt;/p&gt;
&lt;p&gt;What I do is&amp;nbsp; @ch9live &amp;lt;my message here&amp;gt; but it never comes in the ch9live &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Ok folks what is the magic???&amp;nbsp; :@ &lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/507047-Ok-Im-to-stupid-for-Twitter/'&gt;Ok I'm to stupid for Twitter&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/507047/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/507047-Ok-Im-to-stupid-for-Twitter/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/507047-Ok-Im-to-stupid-for-Twitter/</link><pubDate>Wed, 18 Nov 2009 01:04:59 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/507047-Ok-Im-to-stupid-for-Twitter/</guid><evnet:views>339</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/507047/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I don't know waht I'm missing but I'm unable to send a tweet to @ch9live.
What I do is&amp;nbsp; @ch9live &amp;lt;my message here&amp;gt; but it never comes in the ch9live 
&amp;nbsp;
Ok folks what is the magic???&amp;nbsp; :@ in reply to Ok I'm to stupid for Twitter</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>18</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/507047-Ok-Im-to-stupid-for-Twitter/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/507047/Trackback.aspx</trackback:ping></item><item><title>Cancel pattern for webservices [Cancel pattern for webservices]</title><description>&lt;p&gt;Hi folks,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I'm doing a lot of Silverlight + WCF work in the last time and I'm just wondering whether there is specific approach to support cancelation of long running web service calls. In a current scenario I have list of items where the user can select from. With the selection an item,&amp;nbsp;the a webservice get called, which can take a&amp;nbsp;lot of time&amp;nbsp;on the server side to get the results. So what is the best solution to cancel those calls when the user runs quickly through the list or just wants to cancel the call. Currently I'm just blocking the UI, so th user is restricted to wait. &lt;/p&gt;
&lt;p&gt;On the client side I thought to pass a request id through the user state and just process the last call when it comes back. Like this:&lt;/p&gt;
&lt;p&gt;[code language="csharp"]&lt;/p&gt;
&lt;p&gt;private Guid _lastRequestId; private OnItemSelected(int itemId ) { _lastRequestId = Guid.New(); _proxy.DoSomething(itemId, _lastRequest); } private void _proxy_DoSomethingCompleted(object sender, DoSomethingCompletede) { Guid requestId = (Guid)e.UserState; if(_lastRequestId==requestId) { ProcessAndDisplay(e.Result); } }&lt;/p&gt;
&lt;p&gt;[/code]&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;At least I would save the compute time on the client side and prevent the dispaly of wrong data. But than flicking through the item list would be like a DoS attack. &lt;/p&gt;
&lt;p&gt;Any ideas how to solve those problems?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/505663-Cancel-pattern-for-webservices/'&gt;Cancel pattern for webservices&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/505663/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/505663-Cancel-pattern-for-webservices/</comments><link>http://channel9.msdn.com/forums/TechOff/505663-Cancel-pattern-for-webservices/</link><pubDate>Thu, 12 Nov 2009 02:11:19 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/505663-Cancel-pattern-for-webservices/</guid><evnet:views>117</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/505663/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hi folks,
&amp;nbsp;
I'm doing a lot of Silverlight + WCF work in the last time and I'm just wondering whether there is specific approach to support cancelation of long running web service calls. In a current scenario I have list of items where the user can select from. With the selection an&amp;#8230;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/505663-Cancel-pattern-for-webservices/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/505663/Trackback.aspx</trackback:ping></item><item><title>I'm impressed [I'm impressed]</title><description>&lt;p&gt;Last night I did the update from W7 Beta to the RC version on my main working machine&amp;nbsp;and it worked without any problems.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Good job, Microsoft!!!!&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/475707-Im-impressed/'&gt;I'm impressed&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/475707/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/475707-Im-impressed/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/475707-Im-impressed/</link><pubDate>Fri, 26 Jun 2009 18:03:17 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/475707-Im-impressed/</guid><evnet:views>465</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/475707/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Last night I did the update from W7 Beta to the RC version on my main working machine&amp;nbsp;and it worked without any problems.&amp;nbsp;
Good job, Microsoft!!!!in reply to I'm impressed</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/475707-Im-impressed/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/475707/Trackback.aspx</trackback:ping></item><item><title>Disappering shapes in VS [Disappering shapes in VS]</title><description>&lt;P&gt;I have really annoying bug in VS. For all the digrams like class diagrams and Linq2Sql models I get invisible shapes as soon as I do a&amp;nbsp;mouse click on it. If the focus goes away from the shape it comes back. Has anybody heard about this bug. Maybe it is video card driver problem but I couldn't find anything on the internet.&lt;BR&gt;&lt;BR&gt;&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/462111-Disappering-shapes-in-VS/'&gt;Disappering shapes in VS&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/462111/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/462111-Disappering-shapes-in-VS/</comments><link>http://channel9.msdn.com/forums/TechOff/462111-Disappering-shapes-in-VS/</link><pubDate>Mon, 23 Mar 2009 17:16:01 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/462111-Disappering-shapes-in-VS/</guid><evnet:views>513</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/462111/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I have really annoying bug in VS. For all the digrams like class diagrams and Linq2Sql models I get invisible shapes as soon as I do a&amp;nbsp;mouse click on it. If the focus goes away from the shape it comes back. Has anybody heard about this bug. Maybe it is video card driver problem but I couldn't&amp;#8230;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/462111-Disappering-shapes-in-VS/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/462111/Trackback.aspx</trackback:ping></item><item><title>VS2010 all WPF [VS2010 all WPF]</title><description>Here are some screenshots of the new VS GUI &amp;nbsp;&lt;span&gt;&lt;a href="http://blogs.msdn.com/jasonz/archive/2009/02/20/a-new-look-for-visual-studio-2010.aspx"&gt;http://blogs.msdn.com/jasonz/archive/2009/02/20/a-new-look-for-visual-studio-2010.aspx&lt;/a&gt;&lt;/span&gt;&lt;div&gt;I like the new WPF GUI &amp;nbsp;but fortunately it's still Visual Studio.&lt;/div&gt;&lt;div&gt;What do you think?&lt;br&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/458798-VS2010-all-WPF/'&gt;VS2010 all WPF&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/458798/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/458798-VS2010-all-WPF/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/458798-VS2010-all-WPF/</link><pubDate>Wed, 25 Feb 2009 17:18:07 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/458798-VS2010-all-WPF/</guid><evnet:views>1332</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/458798/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Here are some screenshots of the new VS GUI &amp;nbsp;http://blogs.msdn.com/jasonz/archive/2009/02/20/a-new-look-for-visual-studio-2010.aspxI like the new WPF GUI &amp;nbsp;but fortunately it's still Visual Studio.What do you think?in reply to VS2010 all WPF</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/458798-VS2010-all-WPF/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/458798/Trackback.aspx</trackback:ping></item><item><title>sftp client? [sftp client?]</title><description>I'm looking for a lightweight adware-free sftp client for Vista&amp;nbsp;and I don' wanna try each single crapware from the internet.&lt;BR&gt;Any recommendations?&lt;BR&gt;&lt;BR&gt;Thanx&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/457944-sftp-client/'&gt;sftp client?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/457944/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/457944-sftp-client/</comments><link>http://channel9.msdn.com/forums/TechOff/457944-sftp-client/</link><pubDate>Wed, 18 Feb 2009 17:36:16 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/457944-sftp-client/</guid><evnet:views>609</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/457944/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm looking for a lightweight adware-free sftp client for Vista&amp;nbsp;and I don' wanna try each single crapware from the internet.Any recommendations?Thanxin reply to sftp client?</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/457944-sftp-client/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/457944/Trackback.aspx</trackback:ping></item><item><title>So what is in Windows 7? [So what is in Windows 7?]</title><description>I'm just wondering what are "real" new features in W7?&lt;BR&gt;What I heard until now are basically UI improvements (Taskbar, Jumplist,...)&amp;nbsp; and that W7 is feature complete now.&lt;BR&gt;&lt;BR&gt;So Is there any hidden Wow feature I don't know about?&lt;BR&gt;&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/451576-So-what-is-in-Windows-7/'&gt;So what is in Windows 7?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/451576/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/451576-So-what-is-in-Windows-7/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/451576-So-what-is-in-Windows-7/</link><pubDate>Tue, 06 Jan 2009 20:45:33 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/451576-So-what-is-in-Windows-7/</guid><evnet:views>1180</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/451576/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm just wondering what are "real" new features in W7?What I heard until now are basically UI improvements (Taskbar, Jumplist,...)&amp;nbsp; and that W7 is feature complete now.So Is there any hidden Wow feature I don't know about?in reply to So what is in Windows 7?</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>50</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/451576-So-what-is-in-Windows-7/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/451576/Trackback.aspx</trackback:ping></item><item><title>Vodafone proves that I'm wrong [Vodafone proves that I'm wrong]</title><description>&lt;P&gt;On&amp;nbsp;&lt;A href="http://channel9.msdn.com/forums/Coffeehouse/443531-Silverlight-not-ready-yet/"&gt;my last thread&lt;/A&gt;&amp;nbsp;I was wondering why&amp;nbsp;MS&amp;nbsp;prefers Flash&amp;nbsp;over SL in it's own &lt;A href="http://movies.msn.de/"&gt;VOD site&lt;/A&gt;. But now &lt;A href="http://videothek.vodafone.de/"&gt;Vodafone starts a new VOD &lt;/A&gt;site in Germany&amp;nbsp;using SL and btw it's much nicer than the MSN site. So I guess&amp;nbsp;it awnser my question and&amp;nbsp;proves that SL is ready for professional usage.&lt;BR&gt;&lt;BR&gt;Section31&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/445296-Vodafone-proves-that-Im-wrong/'&gt;Vodafone proves that I'm wrong&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/445296/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/445296-Vodafone-proves-that-Im-wrong/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/445296-Vodafone-proves-that-Im-wrong/</link><pubDate>Tue, 25 Nov 2008 17:59:16 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/445296-Vodafone-proves-that-Im-wrong/</guid><evnet:views>1399</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/445296/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>On&amp;nbsp;my last thread&amp;nbsp;I was wondering why&amp;nbsp;MS&amp;nbsp;prefers Flash&amp;nbsp;over SL in it's own VOD site. But now Vodafone starts a new VOD site in Germany&amp;nbsp;using SL and btw it's much nicer than the MSN site. So I guess&amp;nbsp;it awnser my question and&amp;nbsp;proves that SL is ready for&amp;#8230;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>13</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/445296-Vodafone-proves-that-Im-wrong/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/445296/Trackback.aspx</trackback:ping></item><item><title>Silverlight not ready yet? [Silverlight not ready yet?]</title><description>Or why is Flash still preferd by MS? Today MS started a new viedeo portal in Germany&amp;nbsp;&lt;A href="http://movies.msn.de/"&gt;http://movies.msn.de/&lt;/A&gt; and guess what, they using Flash as streaming client. So why don't use the opportunity to bring SL on more machines?&lt;BR&gt;Do I miss something?&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/443531-Silverlight-not-ready-yet/'&gt;Silverlight not ready yet?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/443531/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/443531-Silverlight-not-ready-yet/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/443531-Silverlight-not-ready-yet/</link><pubDate>Mon, 17 Nov 2008 17:43:21 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/443531-Silverlight-not-ready-yet/</guid><evnet:views>1077</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/443531/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Or why is Flash still preferd by MS? Today MS started a new viedeo portal in Germany&amp;nbsp;http://movies.msn.de/ and guess what, they using Flash as streaming client. So why don't use the opportunity to bring SL on more machines?Do I miss something?in reply to Silverlight not ready yet?</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>9</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/443531-Silverlight-not-ready-yet/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/443531/Trackback.aspx</trackback:ping></item><item><title>Messenger needs Flash??? [Messenger needs Flash???]</title><description>I tried to set a background theme to a&amp;nbsp;chat window in the Mesenger Beta and it tells me that I need the newest Flash version to send content through Windows Live Messenger. &lt;BR&gt;WTF?&lt;BR&gt;I mean -&amp;nbsp;it's not the best way to compete against Flash if you tell the people &lt;STRONG&gt;you need&lt;/STRONG&gt; it.&lt;BR&gt;&lt;IFRAME src="http://cid-d9969a7a68650af6.skydrive.live.com/embedrowdetail.aspx/public/MessengerBeta|_needs|_Flash.JPG" frameBorder=0&gt;&lt;/IFRAME&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/442804-Messenger-needs-Flash/'&gt;Messenger needs Flash???&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/442804/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/442804-Messenger-needs-Flash/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/442804-Messenger-needs-Flash/</link><pubDate>Wed, 12 Nov 2008 22:25:34 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/442804-Messenger-needs-Flash/</guid><evnet:views>1148</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/442804/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I tried to set a background theme to a&amp;nbsp;chat window in the Mesenger Beta and it tells me that I need the newest Flash version to send content through Windows Live Messenger. WTF?I mean -&amp;nbsp;it's not the best way to compete against Flash if you tell the people you need it.in reply to Messenger needs Flash???</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/442804-Messenger-needs-Flash/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/442804/Trackback.aspx</trackback:ping></item><item><title>Adoogle [Adoogle]</title><description>Since the last use of the Reader we have new company. At least in the IE on my computer.&lt;BR&gt;&lt;IFRAME src="http://cid-d9969a7a68650af6.skydrive.live.com/embedrowdetail.aspx/public/AdobeGoogle.JPG" frameBorder=0&gt;&lt;/IFRAME&gt;&lt;BR&gt;Any idea how to get rid of this virtual fusion?&lt;A href="https://pvrzqw.bay.livefilestore.com/y1puVC5obA5jGVsmzz5sutmSbD-nSZ-ZpYr4o021ucgfdO28bUwylyBrHeUx2AborMZ6zNWf4ZjuwCcLyyctrgUmA/AdobeGoogle.JPG" rel=lightbox&gt;&lt;/A&gt;&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/442792-Adoogle/'&gt;Adoogle&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/442792/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/442792-Adoogle/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/442792-Adoogle/</link><pubDate>Wed, 12 Nov 2008 21:50:54 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/442792-Adoogle/</guid><evnet:views>1037</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/442792/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Since the last use of the Reader we have new company. At least in the IE on my computer.Any idea how to get rid of this virtual fusion?in reply to Adoogle</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/442792-Adoogle/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/442792/Trackback.aspx</trackback:ping></item><item><title>SL as GUI for the Linux desktop [SL as GUI for the Linux desktop]</title><description>&lt;P&gt;To continue the discussion from this thread&amp;nbsp;&lt;A href="http://channel9.msdn.com/forums/Coffeehouse/436194-Cool-SL-outside-of-the-Browser/"&gt;http://channel9.msdn.com/forums/Coffeehouse/436194-Cool-SL-outside-of-the-Browser/&lt;/A&gt;&amp;nbsp;I found a new information on this topic in the talk of Miguel at PDC&amp;nbsp;&lt;A href="http://channel9.msdn.com/pdc2008/PC54/"&gt;http://channel9.msdn.com/pdc2008/PC54/&lt;/A&gt;&amp;nbsp;(minute 68).&lt;BR&gt;Moonlight 2.0&amp;nbsp;will give you access to the full mono framework once it is released. Furthermore he would like to replace the &amp;nbsp;current standard mono GUI library (gtk#) for the linux desktop with (Silver-/Moonlight). &lt;BR&gt;I think it's a really interesting move and big advantage for Windows developers to use their .net / SL skills&amp;nbsp;for a&amp;nbsp;other plattforms.&amp;nbsp;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/440594-SL-as-GUI-for-the-Linux-desktop/'&gt;SL as GUI for the Linux desktop&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/440594/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/440594-SL-as-GUI-for-the-Linux-desktop/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/440594-SL-as-GUI-for-the-Linux-desktop/</link><pubDate>Tue, 04 Nov 2008 19:17:13 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/440594-SL-as-GUI-for-the-Linux-desktop/</guid><evnet:views>1376</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/440594/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>To continue the discussion from this thread&amp;nbsp;http://channel9.msdn.com/forums/Coffeehouse/436194-Cool-SL-outside-of-the-Browser/&amp;nbsp;I found a new information on this topic in the talk of Miguel at PDC&amp;nbsp;http://channel9.msdn.com/pdc2008/PC54/&amp;nbsp;(minute 68).Moonlight 2.0&amp;nbsp;will give you&amp;#8230;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/440594-SL-as-GUI-for-the-Linux-desktop/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/440594/Trackback.aspx</trackback:ping></item><item><title>Cool SL outside of the Browser [Cool SL outside of the Browser]</title><description>I'm just looking PDC keynote and one of my major wish for SL&amp;nbsp;becoming true.&lt;BR&gt;Silverlight will also run outside of the browser.&lt;BR&gt;&lt;BR&gt;Nice :-)&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/436194-Cool-SL-outside-of-the-Browser/'&gt;Cool SL outside of the Browser&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/436194/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/436194-Cool-SL-outside-of-the-Browser/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/436194-Cool-SL-outside-of-the-Browser/</link><pubDate>Tue, 28 Oct 2008 17:27:29 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/436194-Cool-SL-outside-of-the-Browser/</guid><evnet:views>1080</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/436194/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm just looking PDC keynote and one of my major wish for SL&amp;nbsp;becoming true.Silverlight will also run outside of the browser.Nice :-)in reply to Cool SL outside of the Browser</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>15</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/436194-Cool-SL-outside-of-the-Browser/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/436194/Trackback.aspx</trackback:ping></item><item><title>I am rich! I can show you on my iPhone [I am rich! I can show you on my iPhone]</title><description>Hi folks,&lt;BR&gt;&lt;BR&gt;are you rich???&lt;BR&gt;The most expensive software for the iPhone comes from Germany.&lt;BR&gt;The&amp;nbsp; programmer sold the absolute useless software already&amp;nbsp;four times.&lt;BR&gt;So if you want to show that you are rich, then go for it! Or jsut burn your money on the street.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;German post:&lt;A href="http://venturebeat.com/2008/08/05/apple-wake-up-or-grow-up-a-99999-iphone-app-that-does-nothing-launches/"&gt;&lt;BR&gt;&lt;/A&gt;&lt;A href="http://www.pcwelt.de/start/mobility_handy_pda/pda_smartphone/news/174478/die_teuerste_software_fuers_iphone_kommt_aus_deutschland/index.html"&gt;http://www.pcwelt.de/start/mobility_handy_pda/pda_smartphone/news/174478/die_teuerste_software_fuers_iphone_kommt_aus_deutschland/index.html&lt;/A&gt;&lt;A href="http://venturebeat.com/2008/08/05/apple-wake-up-or-grow-up-a-99999-iphone-app-that-does-nothing-launches/"&gt;&lt;BR&gt;&lt;BR&gt;&lt;/A&gt;Englisdh post:&lt;A href="http://venturebeat.com/2008/08/05/apple-wake-up-or-grow-up-a-99999-iphone-app-that-does-nothing-launches/"&gt;&lt;BR&gt;http://venturebeat.com/2008/08/05/apple-wake-up-or-grow-up-a-99999-iphone-app-that-does-nothing-launches/&lt;/A&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/427330-I-am-rich-I-can-show-you-on-my-iPhone/'&gt;I am rich! I can show you on my iPhone&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/427330/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/427330-I-am-rich-I-can-show-you-on-my-iPhone/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/427330-I-am-rich-I-can-show-you-on-my-iPhone/</link><pubDate>Fri, 12 Sep 2008 17:18:08 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/427330-I-am-rich-I-can-show-you-on-my-iPhone/</guid><evnet:views>785</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/427330/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hi folks,are you rich???The most expensive software for the iPhone comes from Germany.The&amp;nbsp; programmer sold the absolute useless software already&amp;nbsp;four times.So if you want to show that you are rich, then go for it! Or jsut burn your money on the street.German&amp;#8230;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/427330-I-am-rich-I-can-show-you-on-my-iPhone/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/427330/Trackback.aspx</trackback:ping></item><item><title>Problems after SP1 Release [Problems after SP1 Release]</title><description>&lt;P&gt;Hi folks,&lt;BR&gt;&lt;BR&gt;after the release of the .Net 3.5 SP1 I just thought it's good idea to move away from the beta bits.&lt;BR&gt;So just installed the RTM and i recognized it was a bad idea. At least in my particular situation.&lt;BR&gt;I developed an application with SL2B2 and Astoria for the last few weeks. But the SL2B2 is not able&lt;BR&gt;to talk to the Astoria service anymore.&amp;nbsp;&amp;nbsp;So just go back to the Beta, but no way. All the beta installer&lt;BR&gt;are unable to install because the beta bits are not longer&amp;nbsp;available for download.&amp;nbsp; &lt;BR&gt;The whole story here :&amp;nbsp;&lt;A href="http://forums.microsoft.com/forums/showpost.aspx?postid=3752296&amp;amp;siteid=1&amp;amp;sb=0&amp;amp;d=1&amp;amp;at=7&amp;amp;ft=11&amp;amp;tf=0&amp;amp;pageid=0"&gt;http://forums.microsoft.com/forums/showpost.aspx?postid=3752296&amp;amp;siteid=1&amp;amp;sb=0&amp;amp;d=1&amp;amp;at=7&amp;amp;ft=11&amp;amp;tf=0&amp;amp;pageid=0&lt;/A&gt;&lt;BR&gt;So the reason why I bother&amp;nbsp; you with&amp;nbsp;my tale of woe, is that I need a standalone installer of the .net 3.5 SP1 Beta x64.&lt;BR&gt;It would be nice if you&amp;nbsp;could&amp;nbsp;check your download folder and let me know if somebody of you has the installer.&lt;BR&gt;&lt;BR&gt;Thanx &lt;BR&gt;&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/422768-Problems-after-SP1-Release/'&gt;Problems after SP1 Release&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/422768/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/422768-Problems-after-SP1-Release/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/422768-Problems-after-SP1-Release/</link><pubDate>Thu, 21 Aug 2008 19:20:18 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/422768-Problems-after-SP1-Release/</guid><evnet:views>848</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/422768/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hi folks,after the release of the .Net 3.5 SP1 I just thought it's good idea to move away from the beta bits.So just installed the RTM and i recognized it was a bad idea. At least in my particular situation.I developed an application with SL2B2 and Astoria for the last few weeks. But the SL2B2 is&amp;#8230;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/422768-Problems-after-SP1-Release/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/422768/Trackback.aspx</trackback:ping></item><item><title>section31.Adress.Replace(&amp;quot;Potsdam&amp;quot;, &amp;quot;Victoria&amp;quot;); [section31.Adress.Replace(&amp;quot;Potsdam&amp;quot;, &amp;quot;Victoria&amp;quot;);]</title><description>Yesterday, I received a official offer for a position at University of Victoria&amp;nbsp;(BC Canada) for a big genome project&amp;nbsp;and I will accept. I'm really happy about this job and looking forward to gain new experience in overseas (and of course to improve my english).&lt;BR&gt;&lt;BR&gt;So now I'm wondering how many C9'er live on Vancouver Island. Maybe we can drink a beer together. :D&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/399054-section31AdressReplacequotPotsdamquot-quotVictoriaquot/'&gt;section31.Adress.Replace(&amp;quot;Potsdam&amp;quot;, &amp;quot;Victoria&amp;quot;);&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/399054/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/399054-section31AdressReplacequotPotsdamquot-quotVictoriaquot/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/399054-section31AdressReplacequotPotsdamquot-quotVictoriaquot/</link><pubDate>Thu, 24 Apr 2008 09:43:10 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/399054-section31AdressReplacequotPotsdamquot-quotVictoriaquot/</guid><evnet:views>628</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/399054/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Yesterday, I received a official offer for a position at University of Victoria&amp;nbsp;(BC Canada) for a big genome project&amp;nbsp;and I will accept. I'm really happy about this job and looking forward to gain new experience in overseas (and of course to improve my english).&lt;BR&gt;&lt;BR&gt;So now I'm wondering how many C9'er live on Vancouver Island. Maybe we can drink a beer together. &lt;img src='/emoticons/C9/emotion-2.gif' alt='Big Smile' /&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/399054-section31AdressReplacequotPotsdamquot-quotVictoriaquot/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/399054/Trackback.aspx</trackback:ping></item><item><title>Greets from the Launch Event [Greets from the Launch Event]</title><description>&lt;P&gt;Hi folks,&lt;/P&gt;
&lt;P&gt;I'm on the first Microsoft Launch Event worldwide here in Frankfurt/M&lt;/P&gt;
&lt;P&gt;It's very cool here and it's the most biggest event I ever participated. About 7000 people here and we have a lot of fun. The talks are pretty good and in the last talk about Silverlight we got an interesting hint about a some new topsecret features&amp;nbsp;which will be announced at the 5th of march. The speaker was very exited about that "thing" when SottGu presented it to this inner circle. So just have look at ScottGu's blog.&lt;/P&gt;
&lt;P&gt;Many greets form Fankfurt/M&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS:&amp;nbsp;&amp;nbsp;I already got my software pack. :P&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/261089-Greets-from-the-Launch-Event/'&gt;Greets from the Launch Event&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/261089/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/261089-Greets-from-the-Launch-Event/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/261089-Greets-from-the-Launch-Event/</link><pubDate>Wed, 20 Feb 2008 12:48:00 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/261089-Greets-from-the-Launch-Event/</guid><evnet:views>912</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/261089/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;Hi folks,&lt;/P&gt;
&lt;P&gt;I'm on the first Microsoft Launch Event worldwide here in Frankfurt/M&lt;/P&gt;
&lt;P&gt;It's very cool here and it's the most biggest event I ever participated. About 7000 people here and we have a lot of fun. The talks are pretty good and in the last talk about Silverlight we got an interesting hint about a some new topsecret features&amp;nbsp;which will be announced at the 5th of march. The speaker was very exited about that "thing" when SottGu presented it to this inner circle. So just have look at ScottGu's blog.&lt;/P&gt;
&lt;P&gt;Many greets form Fankfurt/M&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS:&amp;nbsp;&amp;nbsp;I already got my software pack. &lt;img src='/emoticons/C9/emotion-4.gif' alt='Tongue Out' /&gt;&lt;/P&gt;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>9</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/261089-Greets-from-the-Launch-Event/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/261089/Trackback.aspx</trackback:ping></item><item><title>RSS feed down since 2 days [edit] [RSS feed down since 2 days [edit]]</title><description>Thee RSS feed of C9 is down since 2 days.&amp;nbsp; :(&lt;BR&gt;The usual parsing error:&lt;BR&gt;"Data at the root level is invalid...".&lt;BR&gt;&lt;BR&gt;When will it be fixed???&lt;BR&gt;&lt;BR&gt;section31&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;[edit]&lt;BR&gt;Thanx, it works again&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/259785-RSS-feed-down-since-2-days-edit/'&gt;RSS feed down since 2 days [edit]&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/259785/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/259785-RSS-feed-down-since-2-days-edit/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/259785-RSS-feed-down-since-2-days-edit/</link><pubDate>Wed, 19 Dec 2007 08:13:35 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/259785-RSS-feed-down-since-2-days-edit/</guid><evnet:views>450</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/259785/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Thee RSS feed of C9 is down since 2 days.&amp;nbsp; &lt;img src='/emoticons/C9/emotion-6.gif' alt='Sad' /&gt;&lt;BR&gt;The usual parsing error:&lt;BR&gt;"Data at the root level is invalid...".&lt;BR&gt;&lt;BR&gt;When will it be fixed???&lt;BR&gt;&lt;BR&gt;section31&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;[edit]&lt;BR&gt;Thanx, it works again</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/259785-RSS-feed-down-since-2-days-edit/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/259785/Trackback.aspx</trackback:ping></item><item><title>The danger of Google [The danger of Google]</title><description>There is a very interesting paper about the danger of Google and search engine in general from the University Graz.&lt;BR&gt;Read here &lt;a href="http://www.iicm.tugraz.at/iicm_papers/dangers_google.pdf"&gt;http://www.iicm.tugraz.at/iicm_papers/dangers_google.pdf&lt;/a&gt;&lt;BR&gt;&lt;BR&gt;Citation:&lt;BR&gt;"Google can use its almost universal knowledge of what is happening in the world to play the stock market without risk: in certain areas Google KNOWS what will happen, and does not have to rely on educated guesses as other players in stock market have to. This is endangering trading on markets:&amp;nbsp; by game theory, trading is based on the fact that nobody has complete information (i.e. will win sometimes, but also loose sometimes). Any entity that never looses rattles the basic foundations of stock exchanges! "&lt;BR&gt;&lt;BR&gt;Since Heisenberg came up with the "Uncertainty principle" we thought nobody can&amp;nbsp;predict the future, but now we have Google. ;)&lt;BR&gt;&lt;BR&gt;What do you think? Is the&amp;nbsp;threat real?&lt;BR&gt;&lt;BR&gt;section31&lt;BR&gt;&amp;nbsp;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/259418-The-danger-of-Google/'&gt;The danger of Google&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/259418/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/259418-The-danger-of-Google/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/259418-The-danger-of-Google/</link><pubDate>Mon, 03 Dec 2007 19:22:16 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/259418-The-danger-of-Google/</guid><evnet:views>2218</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/259418/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>There is a very interesting paper about the danger of Google and search engine in general from the University Graz.Read here http://www.iicm.tugraz.at/iicm_papers/dangers_google.pdfCitation:"Google can use its almost universal knowledge of what is happening in the world to play the stock market without risk: in certain areas Google KNOWS what will happen, and does not have to rely on educated guesses as other players in stock market have to. This is endangering trading on markets:&amp;nbsp; by game theory, trading is based on the fact that nobody has complete information (i.e. will win sometimes,&amp;#8230;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/259418-The-danger-of-Google/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/259418/Trackback.aspx</trackback:ping></item><item><title>No XML Schema Designer for VS 2008 yet [No XML Schema Designer for VS 2008 yet]</title><description>After the &lt;a href="http://channel9.msdn.com/ShowPost.aspx?PostID=358427#358427&gt;trouble &lt;/a&gt;(still unresolved) with VS08 on my main machine, I installed it on a second system and it works fine, until&amp;nbsp;I recognized that no XML Schema Designer isn't included. I found&amp;nbsp; a separate downlod from August 07, but only for the Beta 2. :| &lt;BR&gt;Has somebody an idea when the designer will be finished???&lt;BR&gt;&lt;BR&gt;I need it, Please... [C]&lt;a href="http://channel9.msdn.com/ShowPost.aspx?PostID=358427#358427&gt;&lt;BR&gt;&lt;/a&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/259152-No-XML-Schema-Designer-for-VS-2008-yet/'&gt;No XML Schema Designer for VS 2008 yet&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/259152/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/259152-No-XML-Schema-Designer-for-VS-2008-yet/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/259152-No-XML-Schema-Designer-for-VS-2008-yet/</link><pubDate>Thu, 22 Nov 2007 09:03:40 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/259152-No-XML-Schema-Designer-for-VS-2008-yet/</guid><evnet:views>1279</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/259152/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>After the &lt;a href="/ShowPost.aspx?PostID=358427#358427"&gt;trouble &lt;/a&gt;(still unresolved) with VS08 on my main machine, I installed it on a second system and it works fine, until&amp;nbsp;I recognized that no XML Schema Designer isn't included. I found&amp;nbsp; a separate downlod from August 07, but only for the Beta 2. &lt;img src='/emoticons/C9/emotion-8.gif' alt='Expressionless' /&gt; &lt;BR&gt;Has somebody an idea when the designer will be finished???&lt;BR&gt;&lt;BR&gt;I need it, Please... [C]&lt;a href="/ShowPost.aspx?PostID=358427#358427"&gt;&lt;BR&gt;&lt;/a&gt;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/259152-No-XML-Schema-Designer-for-VS-2008-yet/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/259152/Trackback.aspx</trackback:ping></item><item><title>Bad luck with VS 2008 [Bad luck with VS 2008]</title><description>&lt;P&gt;Hi folks,&lt;BR&gt;&lt;BR&gt;I installed VS 2008 TS today and I have no luck with the system.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;o&amp;nbsp;&amp;nbsp;&amp;nbsp;First I deinstalled all VS 2005 stuff.&lt;BR&gt;o&amp;nbsp;&amp;nbsp;&amp;nbsp;Installed 2008 and setup was succesful&lt;BR&gt;o&amp;nbsp;&amp;nbsp;&amp;nbsp;Starting VS 2008 and a error message about C++ resource bla bla appears and asked me to skip this package and if yes then I can reenable with /resetskippkgs - click yes&lt;BR&gt;o Tried to create a XML schema - ok source code visible but where is the designer ????&lt;BR&gt;o Ok just try a simple WinForm app - create a new one and open the designer - bang error: Microsoft.VisualStudio.Shell.Interop.IselectionContainer already exists in service containe&amp;nbsp;bla bla wtf wtf&lt;BR&gt;o Ok try a reinstall - same error&lt;BR&gt;o Google google... - ok is a reported bug in Beta 2 but was closed because of no reproducibility&lt;BR&gt;o Tried to call devenv.exe /setup - throws an error&amp;nbsp; I can't do it arrgh wtf&lt;BR&gt;o Ok found a hint on a msdn forum about some patches included in the dvd but not in the setup dvddrive:\wcu\dotnetframework\dotnetmsp\x86 &lt;BR&gt;&lt;BR&gt;I will give yo a report when I have applied these 4 patches &lt;BR&gt;&lt;BR&gt;section31&lt;BR&gt;&lt;BR&gt;&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/259125-Bad-luck-with-VS-2008/'&gt;Bad luck with VS 2008&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/259125/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/259125-Bad-luck-with-VS-2008/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/259125-Bad-luck-with-VS-2008/</link><pubDate>Wed, 21 Nov 2007 13:42:25 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/259125-Bad-luck-with-VS-2008/</guid><evnet:views>1372</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/259125/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hi folks,I installed VS 2008 TS today and I have no luck with the system.o&amp;nbsp;&amp;nbsp;&amp;nbsp;First I deinstalled all VS 2005 stuff.o&amp;nbsp;&amp;nbsp;&amp;nbsp;Installed 2008 and setup was succesfulo&amp;nbsp;&amp;nbsp;&amp;nbsp;Starting VS 2008 and a error message about C++ resource bla bla appears and asked me to skip this package and if yes then I can reenable with /resetskippkgs - click yeso Tried to create a XML schema - ok source code visible but where is the designer ????o Ok just try a simple WinForm app - create a new one and open the designer - bang error:&amp;#8230;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/259125-Bad-luck-with-VS-2008/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/259125/Trackback.aspx</trackback:ping></item><item><title>A new internet videoplayer [A new internet videoplayer]</title><description>Hi folks,&lt;BR&gt;&lt;BR&gt;there is new internet videoplayer called Miro. It' very cool and it can consume RSS-feeds as channels. Read &lt;a href="http://janhannemann.spaces.live.com/blog/cns!D9969A7A68650AF6!189.entry"&gt;here&lt;/a&gt; (Yes I have also a blog now :D )&lt;BR&gt;Here is a screenshot:&lt;BR&gt;&lt;BR&gt;&lt;IMG src="http://byfiles.storage.msn.com/y1p_-pbUYuuKN_x__-FGRzlniXvFrfFAiukOzbYGtnA-z3nYsLhDSBK5lFX9DqltnKbzd_hTc6tmV4"&gt; &lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/258962-A-new-internet-videoplayer/'&gt;A new internet videoplayer&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/258962/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/258962-A-new-internet-videoplayer/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/258962-A-new-internet-videoplayer/</link><pubDate>Wed, 14 Nov 2007 10:08:19 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/258962-A-new-internet-videoplayer/</guid><evnet:views>1196</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/258962/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hi folks,&lt;BR&gt;&lt;BR&gt;there is new internet videoplayer called Miro. It' very cool and it can consume RSS-feeds as channels. Read &lt;a href="http://janhannemann.spaces.live.com/blog/cns!D9969A7A68650AF6!189.entry"&gt;here&lt;/a&gt; (Yes I have also a blog now &lt;img src='/emoticons/C9/emotion-2.gif' alt='Big Smile' /&gt; )&lt;BR&gt;Here is a screenshot:&lt;BR&gt;&lt;BR&gt;&lt;IMG src="http://byfiles.storage.msn.com/y1p_-pbUYuuKN_x__-FGRzlniXvFrfFAiukOzbYGtnA-z3nYsLhDSBK5lFX9DqltnKbzd_hTc6tmV4"&gt; &lt;BR&gt;&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/258962-A-new-internet-videoplayer/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/258962/Trackback.aspx</trackback:ping></item><item><title>iPhone hack helps to deploy .net 2.0 [iPhone hack helps to deploy .net 2.0]</title><description>Because the hack of Jon Lech Johansen needs a installed .net framework 2.0 &lt;a href="http://nanocr.eu/2007/07/03/iphone-without-att/"&gt;http://nanocr.eu/2007/07/03/iphone-without-att/&lt;/a&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;Thanx John, &amp;nbsp;so&amp;nbsp;in the future we will find more computers with an already installed framework and our end user don't have to download&amp;nbsp;our installer with a redistributable inside. :D&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/255976-iPhone-hack-helps-to-deploy-net-20/'&gt;iPhone hack helps to deploy .net 2.0&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/255976/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/255976-iPhone-hack-helps-to-deploy-net-20/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/255976-iPhone-hack-helps-to-deploy-net-20/</link><pubDate>Wed, 04 Jul 2007 14:49:37 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/255976-iPhone-hack-helps-to-deploy-net-20/</guid><evnet:views>1220</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/255976/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Because the hack of Jon Lech Johansen needs a installed .net framework 2.0 &lt;a href="http://nanocr.eu/2007/07/03/iphone-without-att/"&gt;http://nanocr.eu/2007/07/03/iphone-without-att/&lt;/a&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;Thanx John, &amp;nbsp;so&amp;nbsp;in the future we will find more computers with an already installed framework and our end user don't have to download&amp;nbsp;our installer with a redistributable inside. &lt;img src='/emoticons/C9/emotion-2.gif' alt='Big Smile' /&gt;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/255976-iPhone-hack-helps-to-deploy-net-20/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/255976/Trackback.aspx</trackback:ping></item><item><title>ClickOnce and file extensions [ClickOnce and file extensions]</title><description>ClickOnce doesn't support the registration of file extensions. Now I think about how to handle the lack of this feature for my app. The only possibility I see is that the app checks on each start whether it is assigned to a specific extension or not. If not then it should self register to this extension. Now my question is, if there a API-call for registration of file extensions or need I to set it manually in the registry?&lt;BR&gt;&lt;BR&gt;section31&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/255772-ClickOnce-and-file-extensions/'&gt;ClickOnce and file extensions&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/255772/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/255772-ClickOnce-and-file-extensions/</comments><link>http://channel9.msdn.com/forums/TechOff/255772-ClickOnce-and-file-extensions/</link><pubDate>Tue, 26 Jun 2007 19:55:45 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/255772-ClickOnce-and-file-extensions/</guid><evnet:views>3884</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/255772/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>ClickOnce doesn't support the registration of file extensions. Now I think about how to handle the lack of this feature for my app. The only possibility I see is that the app checks on each start whether it is assigned to a specific extension or not. If not then it should self register to this extension. Now my question is, if there a API-call for registration of file extensions or need I to set it manually in the registry?&lt;BR&gt;&lt;BR&gt;section31</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>7</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/255772-ClickOnce-and-file-extensions/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/255772/Trackback.aspx</trackback:ping></item><item><title>Inconsistent behavior of the LisView control [Inconsistent behavior of the LisView control]</title><description>I just wondering why the ListView has a different behavior on Vista against XP. If you use the Group feature of the ListView control then you can select all items of a group by clicking on the group header. That's the behavior on Vista but on XP nothing happens if you click on the group. Why&amp;nbsp;this difference??? :s It's Winforms! Should be the same on any platform or not ??&lt;BR&gt;&lt;BR&gt;section31&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/255574-Inconsistent-behavior-of-the-LisView-control/'&gt;Inconsistent behavior of the LisView control&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/255574/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/255574-Inconsistent-behavior-of-the-LisView-control/</comments><link>http://channel9.msdn.com/forums/TechOff/255574-Inconsistent-behavior-of-the-LisView-control/</link><pubDate>Mon, 18 Jun 2007 10:46:31 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/255574-Inconsistent-behavior-of-the-LisView-control/</guid><evnet:views>1782</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/255574/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I just wondering why the ListView has a different behavior on Vista against XP. If you use the Group feature of the ListView control then you can select all items of a group by clicking on the group header. That's the behavior on Vista but on XP nothing happens if you click on the group. Why&amp;nbsp;this difference??? &lt;img src='/emoticons/C9/emotion-7.gif' alt='Perplexed' /&gt; It's Winforms! Should be the same on any platform or not ??&lt;BR&gt;&lt;BR&gt;section31</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/255574-Inconsistent-behavior-of-the-LisView-control/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/255574/Trackback.aspx</trackback:ping></item></channel></rss>