<?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 ktr</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/niners/ktr/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Entries for ktr</title><link>http://channel9.msdn.com/Niners/ktr/</link></image><description>Entries, comments and threads posted by ktr</description><link>http://channel9.msdn.com/Niners/ktr/</link><language>en-us</language><pubDate>Fri, 06 Jun 2008 04:23:09 GMT</pubDate><lastBuildDate>Fri, 06 Jun 2008 04:23:09 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>v4 is awesome, but... [v4 is awesome, but...]</title><description>&lt;br /&gt;
The header is kinda weird looking, as if it wasn't finished or something.&lt;br /&gt;
&lt;br /&gt;
Anyway I'm not going to complain without trying to contribute something, so here's my take at a simple header:&lt;br /&gt;
&lt;br /&gt;
EDIT: &lt;a href="http://7bmhew.bay.livefilestore.com/y1p3btYyTcHLBLHzqkzQfEZJ4nrRVI2Zq3dBJCLwbFoWoX6ux0IX9KX5AHXQ7e1m42KI_kaPcBg_aD7HinvhuTUAHEEPi39_gVI/channel9header2.html"&gt;Added a live demo of what it would look like.&lt;/a&gt; Feel free to take source code or images or whatever else you want.&lt;br /&gt;
...Hopefully this link continues to work. It is up on SkyDrive.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://7bmhew.bay.livefilestore.com/y1p3btYyTcHLBLHzqkzQfEZJ4nrRVI2Zq3dBJCLwbFoWoX6ux0IX9KX5AHXQ7e1m42KI_kaPcBg_aD7HinvhuTUAHEEPi39_gVI/channel9header2.html"&gt;&lt;img src="http://i81.photobucket.com/albums/j225/perfect12k/c9_header_idea.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
EDIT: I tried to keep it very similar&lt;br /&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/407783-v4-is-awesome-but/'&gt;v4 is awesome, but...&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/407783/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/407783-v4-is-awesome-but/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/407783-v4-is-awesome-but/</link><pubDate>Thu, 05 Jun 2008 03:17:22 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/407783-v4-is-awesome-but/</guid><evnet:views>655</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/407783/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>The header is kinda weird looking, as if it wasn't finished or something.

Anyway I'm not going to complain without trying to contribute something, so here's my take at a simple header:

EDIT: Added a live demo of what it would look like. Feel free to take source code or images or whatever else you&amp;#8230;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/407783-v4-is-awesome-but/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/407783/Trackback.aspx</trackback:ping></item><item><title>Aggregate Row String Concatenation in MS Access [Aggregate Row String Concatenation in MS Access]</title><description>Does anyone know how to perform an aggregate string concatenation in Microsoft Access without using a VBA module? I want pure SQL.&lt;br&gt;&lt;br&gt;Across columns of a table is easy. Ex:&lt;br&gt;&lt;br&gt;


People&lt;br&gt;&lt;br&gt;
&lt;u&gt;Id&lt;/u&gt;&amp;nbsp; 
&lt;u&gt;Name&lt;/u&gt;&amp;nbsp; 
&lt;u&gt;Dob&lt;/u&gt;

&lt;br&gt;

1&amp;nbsp;&amp;nbsp; John&amp;nbsp;&amp;nbsp;1/2/1975&lt;br&gt;
2&amp;nbsp;&amp;nbsp; Bob&amp;nbsp;&amp;nbsp; 1/2/1975&lt;br&gt;
3&amp;nbsp;&amp;nbsp; Tim&amp;nbsp;&amp;nbsp; 5/7/1955&lt;br&gt;
&lt;br&gt;

MS Access SQL:
&lt;br&gt;&lt;br&gt;
SELECT p.Id, (p.Name &amp;amp; ' ' &amp;amp; p.Dob) AS Person
&lt;br&gt;
FROM People p

&lt;br&gt;
&lt;br&gt;
I have no idea how I would go about concatenating rows. Does anyone have experience with that?
&lt;br&gt;&lt;br&gt;
Ex: Get a comma-delimited list of people with the same birthday&lt;br&gt;&lt;br&gt;

Results should look like this:&lt;br&gt;&lt;br&gt;
&lt;u&gt;Dob&lt;/u&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;u&gt;People&lt;/u&gt;&lt;br&gt;
1/2/1975&amp;nbsp; John, Bob&lt;br&gt;
5/7/1955&amp;nbsp; Tim

&lt;br&gt;&lt;br&gt;
Thanks for the help.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/401960-Aggregate-Row-String-Concatenation-in-MS-Access/'&gt;Aggregate Row String Concatenation in MS Access&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/401960/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/401960-Aggregate-Row-String-Concatenation-in-MS-Access/</comments><link>http://channel9.msdn.com/forums/TechOff/401960-Aggregate-Row-String-Concatenation-in-MS-Access/</link><pubDate>Wed, 07 May 2008 17:43:11 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/401960-Aggregate-Row-String-Concatenation-in-MS-Access/</guid><evnet:views>2741</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/401960/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Does anyone know how to perform an aggregate string concatenation in Microsoft Access without using a VBA module? I want pure SQL.&lt;br&gt;&lt;br&gt;Across columns of a table is easy. Ex:&lt;br&gt;&lt;br&gt;


People&lt;br&gt;&lt;br&gt;
&lt;u&gt;Id&lt;/u&gt;&amp;nbsp; 
&lt;u&gt;Name&lt;/u&gt;&amp;nbsp; 
&lt;u&gt;Dob&lt;/u&gt;

&lt;br&gt;

1&amp;nbsp;&amp;nbsp; John&amp;nbsp;&amp;nbsp;1/2/1975&lt;br&gt;
2&amp;nbsp;&amp;nbsp; Bob&amp;nbsp;&amp;nbsp; 1/2/1975&lt;br&gt;
3&amp;nbsp;&amp;nbsp; Tim&amp;nbsp;&amp;nbsp; 5/7/1955&lt;br&gt;
&lt;br&gt;

MS Access SQL:
&lt;br&gt;&lt;br&gt;
SELECT p.Id, (p.Name &amp;amp; ' ' &amp;amp; p.Dob) AS Person
&lt;br&gt;
FROM People p

&lt;br&gt;
&lt;br&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/401960-Aggregate-Row-String-Concatenation-in-MS-Access/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/401960/Trackback.aspx</trackback:ping></item><item><title>Silverlight Video Player Too Slow [Silverlight Video Player Too Slow]</title><description>the new silverlight video player is cool, but it is really slow to load. it takes about 30 seconds for me in firefox 2 on xp sp2. and the worst part is during those 30 seconds, firefox becomes unresponsive.&lt;br&gt;&lt;br&gt;i don't know if this is just a silverlight bug, but it is really annoying. does that happen to anyone else?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/258082-Silverlight-Video-Player-Too-Slow/'&gt;Silverlight Video Player Too Slow&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/258082/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/258082-Silverlight-Video-Player-Too-Slow/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/258082-Silverlight-Video-Player-Too-Slow/</link><pubDate>Tue, 09 Oct 2007 05:56:01 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/258082-Silverlight-Video-Player-Too-Slow/</guid><evnet:views>2554</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/258082/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>the new silverlight video player is cool, but it is really slow to load. it takes about 30 seconds for me in firefox 2 on xp sp2. and the worst part is during those 30 seconds, firefox becomes unresponsive.&lt;br&gt;&lt;br&gt;i don't know if this is just a silverlight bug, but it is really annoying. does that happen to anyone else?&lt;br&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/258082-Silverlight-Video-Player-Too-Slow/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/258082/Trackback.aspx</trackback:ping></item><item><title>C# Extension Properties? [C# Extension Properties?]</title><description>In C# 3 you can create an extension method like this:&lt;br&gt;&lt;br&gt;public static class Extensions {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public static string ToCamelCase(&lt;b&gt;this&lt;/b&gt; string s) {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; // perform action&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;}&lt;br&gt;&lt;br&gt;Well what about properties? They could act as an indexer would, by using brackets around parameters:&lt;br&gt;&lt;br&gt;public static class Extensions {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public static object Cell[&lt;b&gt;this&lt;/b&gt; DataTable t, int row, int column] {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; get { return t.Rows[row][column]; }&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set { t.Rows[row][column] = value; }&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;}&lt;br&gt;// ...&lt;br&gt;// usage&lt;br&gt;dataTable.Cell[0, 2] = "Hello World";&lt;br&gt;&lt;br&gt;That example is simple, but I think it could be a powerful concept. Take, for example, Extended Properties in WPF, which can't be added to the class. Extension Properties would allow a simpler syntax. There are also areas in the .NET Framework where a Property would be better suited but a "GetXXX(type param)" method was used because Parameterized Properties don't exist.&lt;br&gt;&lt;br&gt;I dunno, it could end up cluttering the language. What do you think?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/257556-C-Extension-Properties/'&gt;C# Extension Properties?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/257556/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/257556-C-Extension-Properties/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/257556-C-Extension-Properties/</link><pubDate>Wed, 12 Sep 2007 03:58:32 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/257556-C-Extension-Properties/</guid><evnet:views>12128</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/257556/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>In C# 3 you can create an extension method like this:&lt;br&gt;&lt;br&gt;public static class Extensions {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public static string ToCamelCase(&lt;b&gt;this&lt;/b&gt; string s) {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; // perform action&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;}&lt;br&gt;&lt;br&gt;Well what about properties? They could act as an indexer would, by using brackets around parameters:&lt;br&gt;&lt;br&gt;public static class Extensions {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public static object Cell[&lt;b&gt;this&lt;/b&gt; DataTable t, int row, int column] {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; get { return t.Rows[row][column]; }&lt;br&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>25</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/257556-C-Extension-Properties/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/257556/Trackback.aspx</trackback:ping></item><item><title>channel9 beta ideas [channel9 beta ideas]</title><description>this channel9 beta is exciting. any of you artists want to share ideas for what you think the spirit of channel9 is (*cough* jamie *cough*)? maybe some nice mockups the team can get some inspiration from? i had a really simple header design one, it's almost the same as the current one. i want to see what everyone else thinks...&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;img alt="header idea" src="http://i81.photobucket.com/albums/j225/perfect12k/channel9header.jpg"&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/256204-channel9-beta-ideas/'&gt;channel9 beta ideas&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/256204/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/256204-channel9-beta-ideas/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/256204-channel9-beta-ideas/</link><pubDate>Thu, 12 Jul 2007 22:43:25 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/256204-channel9-beta-ideas/</guid><evnet:views>1501</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/256204/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>this channel9 beta is exciting. any of you artists want to share ideas for what you think the spirit of channel9 is (*cough* jamie *cough*)? maybe some nice mockups the team can get some inspiration from? i had a really simple header design one, it's almost the same as the current one. i want to see what everyone else thinks...&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;img alt="header idea" src="http://i81.photobucket.com/albums/j225/perfect12k/channel9header.jpg"&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/256204-channel9-beta-ideas/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/256204/Trackback.aspx</trackback:ping></item><item><title>Apple WWDC Keynote Stream [Apple WWDC Keynote Stream]</title><description>&lt;br&gt;:O&lt;br&gt;&lt;br&gt;&lt;a href="http://events.apple.com.edgesuite.net/d7625zs/event/"&gt;http://events.apple.com.edgesuite.net/d7625zs/event/&lt;br&gt;&lt;/a&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/255436-Apple-WWDC-Keynote-Stream/'&gt;Apple WWDC Keynote Stream&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/255436/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/255436-Apple-WWDC-Keynote-Stream/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/255436-Apple-WWDC-Keynote-Stream/</link><pubDate>Tue, 12 Jun 2007 05:10:37 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/255436-Apple-WWDC-Keynote-Stream/</guid><evnet:views>3170</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/255436/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;br&gt;:O&lt;br&gt;&lt;br&gt;&lt;a href="http://events.apple.com.edgesuite.net/d7625zs/event/"&gt;http://events.apple.com.edgesuite.net/d7625zs/event/&lt;br&gt;&lt;/a&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/255436-Apple-WWDC-Keynote-Stream/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/255436/Trackback.aspx</trackback:ping></item><item><title>Question for da programmers.. [Question for da programmers..]</title><description>When you're programming, your brain is running 3000 miles an hour, and you're "in the zone," you go to copy something to the clipboard (cause ya know... its faster) then you're holding this precious peice of code in the clipboard... do you sometimes forget what it is lol... cause I do all the time. I don't know.. maybe I'm crazy... :|&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/250350-Question-for-da-programmers/'&gt;Question for da programmers..&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/250350/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/250350-Question-for-da-programmers/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/250350-Question-for-da-programmers/</link><pubDate>Wed, 29 Nov 2006 01:32:32 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/250350-Question-for-da-programmers/</guid><evnet:views>6827</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/250350/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>When you're programming, your brain is running 3000 miles an hour, and you're "in the zone," you go to copy something to the clipboard (cause ya know... its faster) then you're holding this precious peice of code in the clipboard... do you sometimes forget what it is lol... cause I do all the time. I don't know.. maybe I'm crazy... &lt;img src='/emoticons/C9/emotion-8.gif' alt='Expressionless' /&gt;&lt;br&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>16</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/250350-Question-for-da-programmers/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/250350/Trackback.aspx</trackback:ping></item><item><title>ASPNet User Account [ASPNet User Account]</title><description>ASP.NET 2.0 User Account .. Not seeing it. Already tried reinstalling .NET. Anyone have any ideas?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/241434-ASPNet-User-Account/'&gt;ASPNet User Account&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/241434/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/241434-ASPNet-User-Account/</comments><link>http://channel9.msdn.com/forums/TechOff/241434-ASPNet-User-Account/</link><pubDate>Thu, 19 Oct 2006 02:48:36 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/241434-ASPNet-User-Account/</guid><evnet:views>16306</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/241434/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>ASP.NET 2.0 User Account .. Not seeing it. Already tried reinstalling .NET. Anyone have any ideas?&lt;br&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>11</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/241434-ASPNet-User-Account/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/241434/Trackback.aspx</trackback:ping></item><item><title>Windows XP VPN [Windows XP VPN]</title><description>&lt;br&gt;Everytime I use a VPN in XP, my internet stops working. I hope that's not supposed to happen... is it? :@&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/241027-Windows-XP-VPN/'&gt;Windows XP VPN&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/241027/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/241027-Windows-XP-VPN/</comments><link>http://channel9.msdn.com/forums/TechOff/241027-Windows-XP-VPN/</link><pubDate>Wed, 18 Oct 2006 13:47:18 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/241027-Windows-XP-VPN/</guid><evnet:views>2919</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/241027/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;br&gt;Everytime I use a VPN in XP, my internet stops working. I hope that's not supposed to happen... is it? &lt;img src='/emoticons/C9/emotion-12.gif' alt='Mad' /&gt;&lt;br&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/241027-Windows-XP-VPN/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/241027/Trackback.aspx</trackback:ping></item><item><title>Visual Studio IDE ... wtf?? [Visual Studio IDE ... wtf??]</title><description>&lt;br&gt;&lt;br&gt;
This is no photoshop.. here's what I get in my toolbox (Visual C# Express 2005)&lt;br&gt;&lt;br&gt;&lt;img src="http://i81.photobucket.com/albums/j225/perfect12k/wtf.jpg" alt="What the f**k???"&gt;
&lt;br&gt;&lt;br&gt;
WTF?&lt;br&gt;&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/228264-Visual-Studio-IDE--wtf/'&gt;Visual Studio IDE ... wtf??&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/228264/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/228264-Visual-Studio-IDE--wtf/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/228264-Visual-Studio-IDE--wtf/</link><pubDate>Sat, 09 Sep 2006 04:18:51 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/228264-Visual-Studio-IDE--wtf/</guid><evnet:views>7250</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/228264/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;br&gt;&lt;br&gt;
This is no photoshop.. here's what I get in my toolbox (Visual C# Express 2005)&lt;br&gt;&lt;br&gt;&lt;img src="http://i81.photobucket.com/albums/j225/perfect12k/wtf.jpg" alt="What the f**k???"&gt;
&lt;br&gt;&lt;br&gt;
WTF?&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>10</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/228264-Visual-Studio-IDE--wtf/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/228264/Trackback.aspx</trackback:ping></item><item><title>Vista 5536 + IE7 = lightspeed [Vista 5536 + IE7 = lightspeed]</title><description>&lt;P&gt;OK.. im running Vista 5536 and IE7 and I have one thing to say... SSSPPPEEEEEEED!!!!!!!!!!!!!! &lt;BR&gt;&lt;BR&gt;It's just like click, done. click, done. click, done. I love it!&lt;BR&gt;&lt;BR&gt;Microsoft, I applaud you! &amp;lt;applause noise="999" /&amp;gt;&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/226049-Vista-5536--IE7--lightspeed/'&gt;Vista 5536 + IE7 = lightspeed&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/226049/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/226049-Vista-5536--IE7--lightspeed/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/226049-Vista-5536--IE7--lightspeed/</link><pubDate>Fri, 01 Sep 2006 04:50:07 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/226049-Vista-5536--IE7--lightspeed/</guid><evnet:views>4717</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/226049/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;OK.. im running Vista 5536 and IE7 and I have one thing to say... SSSPPPEEEEEEED!!!!!!!!!!!!!! &lt;BR&gt;&lt;BR&gt;It's just like click, done. click, done. click, done. I love it!&lt;BR&gt;&lt;BR&gt;Microsoft, I applaud you! &amp;lt;applause noise="999" /&amp;gt;&lt;/P&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>8</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/226049-Vista-5536--IE7--lightspeed/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/226049/Trackback.aspx</trackback:ping></item><item><title>Vista build 5536 for PUBLIC download [Vista build 5536 for PUBLIC download]</title><description>For those that don't know, Vista build 5536 is up for PUBLIC download&lt;br&gt;&lt;br&gt;&lt;a href="http://download.windowsvista.com/preview/prerc1/en/download.html"&gt;Download It!&lt;/a&gt;&lt;br&gt;&lt;br&gt;via &lt;a href="http://www.winsupersite.com/"&gt;Paul Thurrott's SuperSite For Windows&lt;/a&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/225291-Vista-build-5536-for-PUBLIC-download/'&gt;Vista build 5536 for PUBLIC download&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/225291/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/225291-Vista-build-5536-for-PUBLIC-download/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/225291-Vista-build-5536-for-PUBLIC-download/</link><pubDate>Tue, 29 Aug 2006 21:25:04 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/225291-Vista-build-5536-for-PUBLIC-download/</guid><evnet:views>2566</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/225291/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>For those that don't know, Vista build 5536 is up for PUBLIC download&lt;br&gt;&lt;br&gt;&lt;a href="http://download.windowsvista.com/preview/prerc1/en/download.html"&gt;Download It!&lt;/a&gt;&lt;br&gt;&lt;br&gt;via &lt;a href="http://www.winsupersite.com/"&gt;Paul Thurrott's SuperSite For Windows&lt;/a&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/225291-Vista-build-5536-for-PUBLIC-download/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/225291/Trackback.aspx</trackback:ping></item><item><title>System.Drawing.Image.Save( ) and GDI+ [System.Drawing.Image.Save( ) and GDI+]</title><description>&lt;br&gt;I'm having some troubles in ASP.NET with System.Drawing.Image.Save()...&lt;br&gt;&lt;br&gt;I'm passing a stream (MemoryStream specifically) and ImageFormat.Jpeg.&lt;br&gt;&lt;br&gt;On the the first PostBack, everything works as expected and the Image is saved to the MemoryStream correctly... Any subsequent PostBacks generate this error:&lt;br&gt;&lt;br&gt;&lt;hr&gt;&lt;span&gt;&lt;h2&gt;&lt;i&gt;A generic error occurred in GDI+.&lt;/i&gt; &lt;/h2&gt;&lt;/span&gt;

            

            &lt;b&gt; Description: &lt;/b&gt;An
unhandled exception occurred during the execution of the current web
request. Please review the stack trace for more information about the
error and where it originated in the code. &lt;br&gt;&lt;br&gt;

            &lt;b&gt; Exception Details: &lt;/b&gt;System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI+.&lt;br&gt;&lt;br&gt;&lt;hr&gt;&lt;br&gt;Here is the code I'm using to Save the Image to the stream&lt;br&gt;&lt;br&gt;public static byte[] ImageToByteArray(System.Drawing.Image image)&lt;br&gt;{&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (image == null) return null;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; using (MemoryStream ms = new MemoryStream())&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // ** BREAKS HERE **&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; image.Save(ms, image.RawFormat);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return ms.ToArray();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;}&lt;br&gt;&lt;br&gt;&amp;nbsp;I have no idea what is going on.. anyone ever delt with this before? any ideas?&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/224662-SystemDrawingImageSave--and-GDI/'&gt;System.Drawing.Image.Save( ) and GDI+&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/224662/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/224662-SystemDrawingImageSave--and-GDI/</comments><link>http://channel9.msdn.com/forums/TechOff/224662-SystemDrawingImageSave--and-GDI/</link><pubDate>Sat, 26 Aug 2006 22:02:53 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/224662-SystemDrawingImageSave--and-GDI/</guid><evnet:views>11361</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/224662/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm having some troubles in ASP.NET with System.Drawing.Image.Save()...I'm passing a stream (MemoryStream specifically) and ImageFormat.Jpeg.On the the first PostBack, everything works as expected and the Image is saved to the MemoryStream correctly... Any subsequent PostBacks generate this error:A generic error occurred in GDI+. 

            

             Description: An
unhandled exception occurred during the execution of the current web
request. Please review the stack trace for more information about the
error and where it originated in the code. 

             Exception&amp;#8230;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/224662-SystemDrawingImageSave--and-GDI/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/224662/Trackback.aspx</trackback:ping></item><item><title>Best O/R Mappers [Best O/R Mappers]</title><description>What's your favorite O/R Mapper? I really like &lt;a href="http://www.llblgen.com"&gt;LLBLGen&lt;/a&gt;, but i think its a little too much for me. I'm looking for something really simple that can do relational mapping (1:1, 1:m, m:m) What do you suggest?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/216634-Best-OR-Mappers/'&gt;Best O/R Mappers&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/216634/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/216634-Best-OR-Mappers/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/216634-Best-OR-Mappers/</link><pubDate>Tue, 01 Aug 2006 19:37:58 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/216634-Best-OR-Mappers/</guid><evnet:views>6337</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/216634/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>What's your favorite O/R Mapper? I really like &lt;a href="http://www.llblgen.com"&gt;LLBLGen&lt;/a&gt;, but i think its a little too much for me. I'm looking for something really simple that can do relational mapping (1:1, 1:m, m:m) What do you suggest?&lt;br&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>20</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/216634-Best-OR-Mappers/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/216634/Trackback.aspx</trackback:ping></item><item><title>Portable Database [Portable Database]</title><description>&lt;P&gt;I'm looking for a portable database that does not need to be installed.&lt;BR&gt;&lt;BR&gt;Any suggestions?&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/215212-Portable-Database/'&gt;Portable Database&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/215212/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/215212-Portable-Database/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/215212-Portable-Database/</link><pubDate>Thu, 27 Jul 2006 13:37:49 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/215212-Portable-Database/</guid><evnet:views>6957</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/215212/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;I'm looking for a portable database that does not need to be installed.&lt;BR&gt;&lt;BR&gt;Any suggestions?&lt;/P&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/215212-Portable-Database/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/215212/Trackback.aspx</trackback:ping></item><item><title>Windows architecture.. Vienna.. [Windows architecture.. Vienna..]</title><description>Do you think Microsoft should change the architecture of Windows for the next release (Vienna) even if it impacts compatibility?&lt;br&gt;&lt;br&gt;If not, then when? How big of a role do you see virtualization playing?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/213726-Windows-architecture-Vienna/'&gt;Windows architecture.. Vienna..&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/213726/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/213726-Windows-architecture-Vienna/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/213726-Windows-architecture-Vienna/</link><pubDate>Sun, 23 Jul 2006 20:57:14 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/213726-Windows-architecture-Vienna/</guid><evnet:views>11376</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/213726/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Do you think Microsoft should change the architecture of Windows for the next release (Vienna) even if it impacts compatibility?&lt;br&gt;&lt;br&gt;If not, then when? How big of a role do you see virtualization playing?&lt;br&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>47</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/213726-Windows-architecture-Vienna/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/213726/Trackback.aspx</trackback:ping></item><item><title>Vista &amp;quot;Basic&amp;quot; UI update... whyyy?? [Vista &amp;quot;Basic&amp;quot; UI update... whyyy??]</title><description>The new "Basic" UI is much much much better than&lt;br&gt;before... however why is it still so different? I’m sure most of you have seen the Vista imitation themes for XP&lt;br&gt;&lt;br&gt;

&lt;a href="http://leosss.deviantart.com/"&gt;&lt;img src="http://tn3-2.deviantart.com/fs11/300W/i/2006/189/1/a/MiVista_5456_by_leosss.jpg"&gt;&lt;/a&gt;

&lt;br&gt;&lt;br&gt;If it can (and has already been) done, why can’t MS do it?&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/212412-Vista-quotBasicquot-UI-update-whyyy/'&gt;Vista &amp;quot;Basic&amp;quot; UI update... whyyy??&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/212412/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/212412-Vista-quotBasicquot-UI-update-whyyy/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/212412-Vista-quotBasicquot-UI-update-whyyy/</link><pubDate>Wed, 19 Jul 2006 17:46:53 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/212412-Vista-quotBasicquot-UI-update-whyyy/</guid><evnet:views>4728</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/212412/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>The new "Basic" UI is much much much better than&lt;br&gt;before... however why is it still so different? I’m sure most of you have seen the Vista imitation themes for XP&lt;br&gt;&lt;br&gt;

&lt;a href="http://leosss.deviantart.com/"&gt;&lt;img src="http://tn3-2.deviantart.com/fs11/300W/i/2006/189/1/a/MiVista_5456_by_leosss.jpg"&gt;&lt;/a&gt;

&lt;br&gt;&lt;br&gt;If it can (and has already been) done, why can’t MS do it?</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>9</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/212412-Vista-quotBasicquot-UI-update-whyyy/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/212412/Trackback.aspx</trackback:ping></item><item><title>C# Casting .. New Feature Request [C# Casting .. New Feature Request]</title><description>Casting is too verbose, imo.. we need a simple way to test if an object is a certain type without writing so much code, since most of you do it like all the time..&lt;br&gt;&lt;br&gt;currently, here is how i would normally do it:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string SomeProperty(object o)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Car c = o as Car;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (c != null)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // o is a Car, do stuff with it&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&lt;br&gt;or perhaps even like this:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string SomeProperty(object o)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (o is Car)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Car c = o as Car;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // o is a Car, do stuff with it&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&lt;br&gt;hey... but this is C# right?? lets keep it clean:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string SomeProperty(object o)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with (o as Car)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // o is a Car, do stuff with it&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&lt;br&gt;Pretty Nice... all code inside the with block would treat o as a Car, and the block would be skipped if o was not a Car.&lt;br&gt;&lt;br&gt;LIKE IT?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/210948-C-Casting--New-Feature-Request/'&gt;C# Casting .. New Feature Request&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/210948/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/210948-C-Casting--New-Feature-Request/</comments><link>http://channel9.msdn.com/forums/TechOff/210948-C-Casting--New-Feature-Request/</link><pubDate>Sat, 15 Jul 2006 18:23:08 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/210948-C-Casting--New-Feature-Request/</guid><evnet:views>5304</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/210948/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Casting is too verbose, imo.. we need a simple way to test if an object is a certain type without writing so much code, since most of you do it like all the time..&lt;br&gt;&lt;br&gt;currently, here is how i would normally do it:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string SomeProperty(object o)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Car c = o as Car;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (c != null)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;</evnet:previewtext><dc:creator>ktr</dc:creator><slash:comments>8</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/210948-C-Casting--New-Feature-Request/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/210948/Trackback.aspx</trackback:ping></item></channel></rss>