<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 - Entries tagged with Visual Studio Debugger</title>
    <atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Tags/visual+studio+debugger/RSS"></atom:link>
    <itunes:summary></itunes:summary>
    <itunes:author>Microsoft</itunes:author>
    <itunes:subtitle></itunes:subtitle>
    <image>
      <url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
      <title>Channel 9 - Entries tagged with Visual Studio Debugger</title>
      <link>http://channel9.msdn.com/Tags/visual+studio+debugger</link>
    </image>
    <itunes:image href=""></itunes:image>
    <itunes:category text="Technology"></itunes:category>
    <description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
    <link>http://channel9.msdn.com/Tags/visual+studio+debugger</link>
    <language>en</language>
    <pubDate>Thu, 23 May 2013 08:01:05 GMT</pubDate>
    <lastBuildDate>Thu, 23 May 2013 08:01:05 GMT</lastBuildDate>
    <generator>Rev9</generator>
    <c9:totalResults>6</c9:totalResults>
    <c9:pageCount>1</c9:pageCount>
    <c9:pageSize>25</c9:pageSize>
  <item>
      <title>Visual Studio Data (Set, Table, Row, View, RowView, RowViewCollection) Visualizer</title>
      <description><![CDATA[<p>Today's &quot;I don't know what to call it&quot; Wednesday project is one that's just a little different, not a game or anything, but something I've not seen mentioned too much recently.</p><p>Visual Studio has these cool things to help you in your debugging, called <a href="http://msdn.microsoft.com/en-us/library/zayyhzts.aspx">Visualizers</a>. They help you see beyond the code and into the data, using a custom dialog or interface. And while there's a number in the box, they can't build one for everything.</p><p>But Visual Studio being what it is, you can create your own...</p><h2><a href="http://www.codeproject.com/Tips/578777/Visual-Studio-Visualizer-Part-1">Visual Studio Visualizer: Part 1</a></h2><blockquote><p>Add a Visual Studio Visualizer to look data from:&nbsp;</p><ul><li>Dataset;&nbsp; </li><li>DataTable;&nbsp; </li><li>DataRow;&nbsp; </li><li>DataView;&nbsp; </li><li>DataRowView;&nbsp; </li><li>DataRowCollection. </li></ul><h4>Using the code</h4><p>Visit the project home page, download your flavor (2010 or 2012), unzip, and place the DLLs in the right folder, <em>Documents\Visual Studio xxxx\Visualizers</em>.&nbsp;</p><p>When debugging with VS there is a extra option for visualizer, for the <code>DataSet</code>, <code>DataTable</code>, <code>DataRow</code>, and <code>DataView</code> objects.&nbsp;</p><h4>Points of Interest</h4><p>For some reason arrays are not allowed for visualizing within visual studio debug, but when using the <code>VisualizerDevelopmentHost</code> class to test the visualizer, an array is allowed.</p><p>This project shows a work around to make a non-serializable object available to our custom visualizer.&nbsp;</p><h4>Create a visualizer</h4><p>This project was created using visual studio express, any edition can be used.</p><p>First create a class library project then add a reference to the Visual Studio Visualizer API, the DLL can be found on: <em>(Visual Studio installation folder)\Common7\IDE\ReferenceAssemblies\v2.0 Microsoft.VisualStudio.DebuggerVisualizers.dll</em>.&nbsp;</p><p>Add references to the types of objects, the visualizer will receive:</p><p><pre class="brush: csharp">[assembly: System.Diagnostics.DebuggerVisualizer(
    typeof(DSVisualizer), typeof(VisualizerObjectSource), Target = typeof(DataSet), Description = &quot;My DataSet Visualizer&quot;)]
[assembly: System.Diagnostics.DebuggerVisualizer(
    typeof(DTVisualizer), typeof(VisualizerObjectSource), Target = typeof(DataTable), 
    Description = &quot;My DataTable Visualizer&quot;)]
[assembly: System.Diagnostics.DebuggerVisualizer(
    typeof(DRVisualizer), typeof(DataRowVisualizerObjectSource), 
    Target = typeof(DataRow), Description = &quot;My DataRow Visualizer&quot;)]
[assembly: System.Diagnostics.DebuggerVisualizer(
    typeof(DVVisualizer), typeof(DataRowVisualizerObjectSource), 
    Target = typeof(DataView), Description = &quot;My DataView Visualizer&quot;)]
[assembly: System.Diagnostics.DebuggerVisualizer(
    typeof(DRVVisualizer), typeof(DataRowVisualizerObjectSource), 
    Target = typeof(DataRowView), Description = &quot;My DataRowView Visualizer&quot;)]
[assembly: System.Diagnostics.DebuggerVisualizer(
    typeof(DRCollectionVisualizer), typeof(DataRowVisualizerObjectSource), 
    Target = typeof(DataRowCollection), Description = &quot;My DataRowCollection Visualizer&quot;)]</pre></p><p>This can be inside any cs file of the project, but it must be outside any namespace declaration. As you can see, some types use <code>VisualizerObjectSource</code> and others use <code>DataRowVisualizerObjectSource</code>, this is because the <code>DataRow</code> type needs some massage before we can use it, this is covered later.&nbsp;&nbsp;</p><p>The class that will get the object to visualize must inherits from <code>DialogDebuggerVisualizer</code>.&nbsp;</p><p>This will allow to override the <code>Show</code> method:&nbsp;</p><p>...</p></blockquote><h2><a href="https://vsdatawatchers.codeplex.com/">Visual Studio Watchers</a></h2><blockquote><p>This project contains some visualizers to work with Visual Studio.</p><p>Currently this project has visualizers for:</p><ul><li>DataSet </li><li>DataTable </li><li>DataRow </li><li>DataView </li><li>DataRowView </li><li>DataRowCollection </li></ul><p>There next visualizers will be for entity framework objects (trying to do a visualizer for all custom objects), StringBuilder, string and XDocument.</p><p><strong>Introduction</strong></p><p>Place the dll's in the right folder, Documents\Visual Studio xxxx\Visualizers.<br>When debugging with VS there is a extra option for visualizer, for the DataSet, DataTable, DataRow and DataView objects.</p><p><strong>DataSet</strong></p><p>The dataset visualizer mainpage, show a tree and a datagrid. In the tree all of the datatables are available:</p><p><img title="image" src="http://files.channel9.msdn.com/wlwimages/ae054c0b4d7b402ab1239e6800c0220f/image%5B2%5D-129.png" alt="image" width="500" height="268" border="0"></p><p>...</p><p><img title="image" src="http://files.channel9.msdn.com/wlwimages/ae054c0b4d7b402ab1239e6800c0220f/image%5B8%5D-64.png" alt="image" width="500" height="306" border="0"></p></blockquote><p>And as you expect the source for all this is available too...</p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/visual+studio+debugger/RSS&WT.dl=0&WT.entryid=Entry:RSSView:3b225c3f82ca42c5bc4ea1a6017c3901">]]></description>
      <comments>http://channel9.msdn.com/coding4fun/blog/Visual-Studio-Data-Set-Table-Row-View-RowView-RowViewCollection-Visualizer</comments>
      <itunes:summary>Today&#39;s &amp;quot;I don&#39;t know what to call it&amp;quot; Wednesday project is one that&#39;s just a little different, not a game or anything, but something I&#39;ve not seen mentioned too much recently. Visual Studio has these cool things to help you in your debugging, called Visualizers. They help you see beyond the code and into the data, using a custom dialog or interface. And while there&#39;s a number in the box, they can&#39;t build one for everything. But Visual Studio being what it is, you can create your own... Visual Studio Visualizer: Part 1Add a Visual Studio Visualizer to look data from:&amp;nbsp; Dataset;&amp;nbsp; DataTable;&amp;nbsp; DataRow;&amp;nbsp; DataView;&amp;nbsp; DataRowView;&amp;nbsp; DataRowCollection. Using the codeVisit the project home page, download your flavor (2010 or 2012), unzip, and place the DLLs in the right folder, Documents\Visual Studio xxxx\Visualizers.&amp;nbsp; When debugging with VS there is a extra option for visualizer, for the DataSet, DataTable, DataRow, and DataView objects.&amp;nbsp; Points of InterestFor some reason arrays are not allowed for visualizing within visual studio debug, but when using the VisualizerDevelopmentHost class to test the visualizer, an array is allowed. This project shows a work around to make a non-serializable object available to our custom visualizer.&amp;nbsp; Create a visualizerThis project was created using visual studio express, any edition can be used. First create a class library project then add a reference to the Visual Studio Visualizer API, the DLL can be found on: (Visual Studio installation folder)\Common7\IDE\ReferenceAssemblies\v2.0 Microsoft.VisualStudio.DebuggerVisualizers.dll.&amp;nbsp; Add references to the types of objects, the visualizer will receive: [assembly: System.Diagnostics.DebuggerVisualizer(
    typeof(DSVisualizer), typeof(VisualizerObjectSource), Target = typeof(DataSet), Description = &amp;quot;My DataSet Visualizer&amp;quot;)]
[assembly: System.Diagnostics.DebuggerVisualizer(
    typeof(DTVisualizer), typeof(VisualizerObject</itunes:summary>
      <link>http://channel9.msdn.com/coding4fun/blog/Visual-Studio-Data-Set-Table-Row-View-RowView-RowViewCollection-Visualizer</link>
      <pubDate>Wed, 01 May 2013 13:00:00 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/coding4fun/blog/Visual-Studio-Data-Set-Table-Row-View-RowView-RowViewCollection-Visualizer</guid>
      <media:thumbnail url="http://files.channel9.msdn.com/thumbnail/2e7e03d2-388f-4f30-a5ed-60f278c7349d.png" height="54" width="100"></media:thumbnail>
      <media:thumbnail url="http://files.channel9.msdn.com/thumbnail/2f17b594-dd39-409b-b99f-b9994c320a6e.png" height="118" width="220"></media:thumbnail>      
      <dc:creator>Greg Duncan</dc:creator>
      <itunes:author>Greg Duncan</itunes:author>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/coding4fun/blog/Visual-Studio-Data-Set-Table-Row-View-RowView-RowViewCollection-Visualizer/RSS</wfw:commentRss>
      <category>C#</category>
      <category>Coding4Fun</category>
      <category>Debugging</category>
      <category>Visual Studio</category>
      <category>Visual Studio Debugger</category>
    </item>
  <item>
      <title>GPU debugging in Visual Studio 2012</title>
      <description><![CDATA[<p>Hi, I am <a href="http://www.danielmoth.com/Blog/">Daniel Moth</a> <img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif" alt="Smiley"></p><p>This screencast assumes knowledge of the C&#43;&#43; AMP API, e.g. that you totally understand the <a href="http://channel9.msdn.com/Blogs/DanielMoth/Matrix-Multiplication-with-C-AMP">matrix multiplication implementation in C&#43;&#43; AMP</a>. So if you satisfy that prerequisite,&nbsp;watch this screencast on&nbsp;what features are available in Visual Studio 2012 for&nbsp;debugging C&#43;&#43; AMP code.</p><p>To learn more please visit the <a href="http://blogs.msdn.com/b/nativeconcurrency/">C&#43;&#43; AMP blog</a>, and we encourage C&#43;&#43; AMP&nbsp;questions in the <a href="http://social.msdn.microsoft.com/Forums/en-US/parallelcppnative/threads">Parallel Computing in C&#43;&#43; and Native Code MSDN forum</a>.</p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/visual+studio+debugger/RSS&WT.dl=0&WT.entryid=Entry:RSSView:4a46ea9ae04c48ddbabba08501774042">]]></description>
      <comments>http://channel9.msdn.com/Blogs/DanielMoth/GPU-debugging-in-Visual-Studio-2012</comments>
      <itunes:summary>Hi, I am Daniel Moth  This screencast assumes knowledge of the C&amp;#43;&amp;#43; AMP API, e.g. that you totally understand the matrix multiplication implementation in C&amp;#43;&amp;#43; AMP. So if you satisfy that prerequisite,&amp;nbsp;watch this screencast on&amp;nbsp;what features are available in Visual Studio 2012 for&amp;nbsp;debugging C&amp;#43;&amp;#43; AMP code. To learn more please visit the C&amp;#43;&amp;#43; AMP blog, and we encourage C&amp;#43;&amp;#43; AMP&amp;nbsp;questions in the Parallel Computing in C&amp;#43;&amp;#43; and Native Code MSDN forum. </itunes:summary>
      <itunes:duration>951</itunes:duration>
      <link>http://channel9.msdn.com/Blogs/DanielMoth/GPU-debugging-in-Visual-Studio-2012</link>
      <pubDate>Wed, 11 Jul 2012 01:34:30 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Blogs/DanielMoth/GPU-debugging-in-Visual-Studio-2012</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/8fe3/ea558f48-e81b-468e-ab44-b27af6e08fe3/ampDebug_100.jpg" height="62" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/8fe3/ea558f48-e81b-468e-ab44-b27af6e08fe3/ampDebug_220.jpg" height="137" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/8fe3/ea558f48-e81b-468e-ab44-b27af6e08fe3/ampDebug_512.jpg" height="320" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/8fe3/ea558f48-e81b-468e-ab44-b27af6e08fe3/ampDebug.mp3" expression="full" duration="951" fileSize="15221125" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/8fe3/ea558f48-e81b-468e-ab44-b27af6e08fe3/ampDebug.wma" expression="full" duration="951" fileSize="7704283" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/8fe3/ea558f48-e81b-468e-ab44-b27af6e08fe3/ampDebug_high.mp4" expression="full" duration="951" fileSize="206042067" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/8fe3/ea558f48-e81b-468e-ab44-b27af6e08fe3/ampDebug_Source.wmv" expression="full" duration="951" fileSize="23804071" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/8fe3/ea558f48-e81b-468e-ab44-b27af6e08fe3/ampDebug_Source.wmv" length="23804071" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Daniel Moth</dc:creator>
      <itunes:author>Daniel Moth</itunes:author>
      <slash:comments>6</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Blogs/DanielMoth/GPU-debugging-in-Visual-Studio-2012/RSS</wfw:commentRss>
      <category>C++</category>
      <category>Debugging</category>
      <category>GPGPU</category>
      <category>parallel  Debugging</category>
      <category>Parallel Computing</category>
      <category>Parallel Computing Platform</category>
      <category>Parallelism</category>
      <category>Visual Studio</category>
      <category>Visual Studio Debugger</category>
      <category>C++ AMP</category>
      <category>C++ Accelerated Massive Parallelism</category>
    </item>
  <item>
      <title>Working with DataTips in Visual Studio 2010</title>
      <description><![CDATA[ <p>In this episode we continue exploring Visual Studio 2010 Tips and Tricks with an examination of DataTips.&nbsp; Learn how to use the new features such as pinned and floating DataTips.</p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/visual+studio+debugger/RSS&WT.dl=0&WT.entryid=Entry:RSSView:207cb561daec463f96bb9eb70104dcb8">]]></description>
      <comments>http://channel9.msdn.com/posts/Working-with-DataTips-in-Visual-Studio-2010</comments>
      <itunes:summary> In this episode we continue exploring Visual Studio 2010 Tips and Tricks with an examination of DataTips.&amp;nbsp; Learn how to use the new features such as pinned and floating DataTips. </itunes:summary>
      <itunes:duration>198</itunes:duration>
      <link>http://channel9.msdn.com/posts/Working-with-DataTips-in-Visual-Studio-2010</link>
      <pubDate>Thu, 31 Mar 2011 17:14:53 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/posts/Working-with-DataTips-in-Visual-Studio-2010</guid>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/dcb8/207cb561-daec-463f-96bb-9eb70104dcb8/vstipsWorkingWithDataTipsInVS2010_100_ch9.jpg" height="75" width="100"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/dcb8/207cb561-daec-463f-96bb-9eb70104dcb8/vstipsWorkingWithDataTipsInVS2010_220_ch9.jpg" height="165" width="220"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/dcb8/207cb561-daec-463f-96bb-9eb70104dcb8/vstipsWorkingWithDataTipsInVS2010_512_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/dcb8/207cb561-daec-463f-96bb-9eb70104dcb8/vstipsWorkingWithDataTipsInVS2010_custom_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://ak.channel9.msdn.com/ch9/dcb8/207cb561-daec-463f-96bb-9eb70104dcb8/vstipsWorkingWithDataTipsInVS2010_2MB_ch9.wmv" expression="full" duration="198" fileSize="7501133" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/dcb8/207cb561-daec-463f-96bb-9eb70104dcb8/vstipsWorkingWithDataTipsInVS2010_ch9.mp3" expression="full" duration="198" fileSize="1591530" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/dcb8/207cb561-daec-463f-96bb-9eb70104dcb8/vstipsWorkingWithDataTipsInVS2010_ch9.wma" expression="full" duration="198" fileSize="1621131" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/dcb8/207cb561-daec-463f-96bb-9eb70104dcb8/vstipsWorkingWithDataTipsInVS2010_high_ch9.mp4" expression="full" duration="198" fileSize="56253829" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/dcb8/207cb561-daec-463f-96bb-9eb70104dcb8/vstipsWorkingWithDataTipsInVS2010_low_ch9.mp4" expression="full" duration="198" fileSize="6949223" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/dcb8/207cb561-daec-463f-96bb-9eb70104dcb8/vstipsWorkingWithDataTipsInVS2010_Zune_ch9.wmv" expression="full" duration="198" fileSize="10502676" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://ak.channel9.msdn.com/ch9/dcb8/207cb561-daec-463f-96bb-9eb70104dcb8/vstipsWorkingWithDataTipsInVS2010_2MB_ch9.wmv" length="7501133" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Visual Studio Tips and Tricks</dc:creator>
      <itunes:author>Visual Studio Tips and Tricks</itunes:author>
      <slash:comments>3</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/posts/Working-with-DataTips-in-Visual-Studio-2010/rss</wfw:commentRss>
      <category>DataTip</category>
      <category>Tips</category>
      <category>Tips tricks</category>
      <category>Visual Studio</category>
      <category>Visual Studio 2010</category>
      <category>Visual Studio Debugger</category>
    </item>
  <item>
      <title>MPI Cluster Debugger Visual Studio 2010 Launch Integration</title>
      <description><![CDATA[
<p>In this video, Daniel Moth demonstrates features in Visual Studio 2010 that make it easy for developers to debug MPI applications. You can see how easy it is to start using the MPI cluster debugger, which allows developers to easily launch an MPI application
 on multiple nodes, set breakpoints, and examine the application during the run -- both on a local machine or a remote cluster.&nbsp; In addition, the Parallel Patterns Library (PPL) is also shown, demonstrating how MPI applications can be written using both multiple
 nodes and multiple threads.</p>
<p>Read more about this feature on this blog post: <a shape="rect" href="http://www.danielmoth.com/Blog/2009/11/mpi-cluster-debugger-launch-integration.html" shape="rect">
MPI Cluster Debugger</a>.</p>
<p></p>
 <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/visual+studio+debugger/RSS&WT.dl=0&WT.entryid=Entry:RSSView:262bc2fa123a4844b4059dea00c3655b">]]></description>
      <comments>http://channel9.msdn.com/Shows/The+HPC+Show/MPI-Cluster-Debugger-Visual-Studio-2010-Launch-Integration</comments>
      <itunes:summary>
In this video, Daniel Moth demonstrates features in Visual Studio 2010 that make it easy for developers to debug MPI applications. You can see how easy it is to start using the MPI cluster debugger, which allows developers to easily launch an MPI application
 on multiple nodes, set breakpoints, and examine the application during the run -- both on a local machine or a remote cluster.&amp;nbsp; In addition, the Parallel Patterns Library (PPL) is also shown, demonstrating how MPI applications can be written using both multiple
 nodes and multiple threads. 
Read more about this feature on this blog post: 
MPI Cluster Debugger. 
 
</itunes:summary>
      <itunes:duration>688</itunes:duration>
      <link>http://channel9.msdn.com/Shows/The+HPC+Show/MPI-Cluster-Debugger-Visual-Studio-2010-Launch-Integration</link>
      <pubDate>Tue, 15 Dec 2009 01:45:00 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Shows/The+HPC+Show/MPI-Cluster-Debugger-Visual-Studio-2010-Launch-Integration</guid>
      <media:thumbnail url="http://ecn.channel9.msdn.com/o9/previewImages/100/512971_100x75.jpg" height="75" width="100"></media:thumbnail>
      <media:thumbnail url="http://ecn.channel9.msdn.com/o9/previewImages/220/512971_220x165.jpg" height="165" width="220"></media:thumbnail>
      <media:thumbnail url="http://ecn.channel9.msdn.com/o9/ch9/1/7/9/2/1/5/mpiclusterdebugger_320_ch9.png" height="240" width="320"></media:thumbnail>
      <media:thumbnail url="http://ecn.channel9.msdn.com/o9/ch9/1/7/9/2/1/5/mpiclusterdebugger_512_ch9.png" height="384" width="512"></media:thumbnail>
      <media:thumbnail url="http://ecn.channel9.msdn.com/o9/ch9/1/7/9/2/1/5/mpiclusterdebugger_85_ch9.png" height="64" width="85"></media:thumbnail>
      <media:group>
        <media:content url="http://ecn.channel9.msdn.com/o9/ch9/1/7/9/2/1/5/mpiclusterdebugger_2MB_ch9.wmv" expression="full" duration="688" fileSize="103449597" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ecn.channel9.msdn.com/o9/ch9/1/7/9/2/1/5/mpiclusterdebugger_ch9.mp3" expression="full" duration="688" fileSize="5508038" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://ecn.channel9.msdn.com/o9/ch9/1/7/9/2/1/5/mpiclusterdebugger_ch9.mp4" expression="full" duration="688" fileSize="33508198" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ecn.channel9.msdn.com/o9/ch9/1/7/9/2/1/5/mpiclusterdebugger_ch9.wma" expression="full" duration="688" fileSize="5574387" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://ecn.channel9.msdn.com/o9/ch9/1/7/9/2/1/5/mpiclusterdebugger_ch9.wmv" expression="full" duration="688" fileSize="39535159" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ecn.channel9.msdn.com/o9/ch9/1/7/9/2/1/5/mpiclusterdebugger_Zune_ch9.wmv" expression="full" duration="688" fileSize="37231211" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://ecn.channel9.msdn.com/o9/ch9/1/7/9/2/1/5/mpiclusterdebugger_ch9.wmv" length="39535159" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Wenming Ye</dc:creator>
      <itunes:author>Wenming Ye</itunes:author>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Shows/The+HPC+Show/MPI-Cluster-Debugger-Visual-Studio-2010-Launch-Integration/RSS</wfw:commentRss>
      <category>HPC</category>
      <category>HPC Server 2008</category>
      <category>Server 2008 R2</category>
      <category>Visual Studio 2010</category>
      <category>Visual Studio Debugger</category>
      <category>Windows HPC Server 2008</category>
    </item>
  <item>
      <title>Debugger Trick: Debug a single Window or Form at a time</title>
      <description><![CDATA[In this short video, I'll cover how to debug a single form or window in a solution that contains multiple windows/forms. For more details, see the following
<a shape="rect" href="http://blogs.msdn.com/habibh/archive/2009/07/17/walkthrough-debug-a-wpf-window-or-windows-form-without-running-your-application-video.aspx" shape="rect">
blog</a>.<br>
<br>
Habib Heydarian.  <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/visual+studio+debugger/RSS&WT.dl=0&WT.entryid=Entry:RSSView:fc08f58961194402966c9deb0178b392">]]></description>
      <comments>http://channel9.msdn.com/Blogs/Habib+Heydarian/Debugger-Trick-Debug-a-single-Window-or-Form-at-a-time</comments>
      <itunes:summary>In this short video, I&#39;ll cover how to debug a single form or window in a solution that contains multiple windows/forms. For more details, see the following

blog.

Habib Heydarian. </itunes:summary>
      <itunes:duration>266</itunes:duration>
      <link>http://channel9.msdn.com/Blogs/Habib+Heydarian/Debugger-Trick-Debug-a-single-Window-or-Form-at-a-time</link>
      <pubDate>Sat, 18 Jul 2009 08:27:00 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Blogs/Habib+Heydarian/Debugger-Trick-Debug-a-single-Window-or-Form-at-a-time</guid>
      <media:thumbnail url="http://ecn.channel9.msdn.com/o9/previewImages/100/479502_100x75.jpg" height="75" width="100"></media:thumbnail>
      <media:thumbnail url="http://ecn.channel9.msdn.com/o9/previewImages/220/479502_220x165.jpg" height="165" width="220"></media:thumbnail>
      <media:thumbnail url="http://mschnlnine.vo.llnwd.net/d1/ch9/2/0/5/9/7/4/DebugOneForm_large_ch9.png" height="240" width="320"></media:thumbnail>
      <media:thumbnail url="http://mschnlnine.vo.llnwd.net/d1/ch9/2/0/5/9/7/4/DebugOneForm_small_ch9.png" height="64" width="85"></media:thumbnail>
      <media:group>
        <media:content url="http://mschnlnine.vo.llnwd.net/d1/ch9/2/0/5/9/7/4/DebugOneForm_2MB_ch9.wmv" expression="full" duration="266" fileSize="4827191" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://mschnlnine.vo.llnwd.net/d1/ch9/2/0/5/9/7/4/DebugOneForm_ch9.mp3" expression="full" duration="266" fileSize="2129116" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://mschnlnine.vo.llnwd.net/d1/ch9/2/0/5/9/7/4/DebugOneForm_ch9.mp4" expression="full" duration="266" fileSize="6311489" type="video/mp4" medium="video"></media:content>
        <media:content url="http://mschnlnine.vo.llnwd.net/d1/ch9/2/0/5/9/7/4/DebugOneForm_ch9.wma" expression="full" duration="266" fileSize="4321737" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://mschnlnine.vo.llnwd.net/d1/ch9/2/0/5/9/7/4/DebugOneForm_Zune_ch9.wmv" expression="full" duration="266" fileSize="6119013" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://mschnlnine.vo.llnwd.net/d1/ch9/2/0/5/9/7/4/DebugOneForm_2MB_ch9.wmv" length="4827191" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Habib Heydarian</dc:creator>
      <itunes:author>Habib Heydarian</itunes:author>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Blogs/Habib+Heydarian/Debugger-Trick-Debug-a-single-Window-or-Form-at-a-time/RSS</wfw:commentRss>
      <category>Visual Studio Debugger</category>
    </item>
  <item>
      <title>Fun with Breakpoints!</title>
      <description><![CDATA[This is one of the lesser known and depending on your point of view, either fun or annoying features in the debugger. You can find out more at
<a shape="rect" href="http://blogs.msdn.com/habibh" shape="rect">http://blogs.msdn.com/habibh</a>.<br>
 <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/visual+studio+debugger/RSS&WT.dl=0&WT.entryid=Entry:RSSView:049d313377c6435db5679deb0178b695">]]></description>
      <comments>http://channel9.msdn.com/Blogs/Habib+Heydarian/Fun with Breakpoints</comments>
      <itunes:summary>This is one of the lesser known and depending on your point of view, either fun or annoying features in the debugger. You can find out more at
http://blogs.msdn.com/habibh.
</itunes:summary>
      <itunes:duration>82</itunes:duration>
      <link>http://channel9.msdn.com/Blogs/Habib+Heydarian/Fun with Breakpoints</link>
      <pubDate>Mon, 13 Jul 2009 12:11:00 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Blogs/Habib+Heydarian/Fun with Breakpoints</guid>
      <media:thumbnail url="http://ecn.channel9.msdn.com/o9/previewImages/100/478418_100x75.jpg" height="75" width="100"></media:thumbnail>
      <media:thumbnail url="http://ecn.channel9.msdn.com/o9/previewImages/220/478418_220x165.jpg" height="165" width="220"></media:thumbnail>
      <media:thumbnail url="http://mschnlnine.vo.llnwd.net/d1/ch9/8/1/4/8/7/4/FunVisualStudioBreakpoints_large_ch9.png" height="240" width="320"></media:thumbnail>
      <media:thumbnail url="http://mschnlnine.vo.llnwd.net/d1/ch9/8/1/4/8/7/4/FunVisualStudioBreakpoints_small_ch9.png" height="64" width="85"></media:thumbnail>
      <media:group>
        <media:content url="http://mschnlnine.vo.llnwd.net/d1/ch9/8/1/4/8/7/4/FunVisualStudioBreakpoints_2MB_ch9.wmv" expression="full" duration="82" fileSize="2675973" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://mschnlnine.vo.llnwd.net/d1/ch9/8/1/4/8/7/4/FunVisualStudioBreakpoints_ch9.mp3" expression="full" duration="82" fileSize="660904" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://mschnlnine.vo.llnwd.net/d1/ch9/8/1/4/8/7/4/FunVisualStudioBreakpoints_ch9.mp4" expression="full" duration="82" fileSize="2372462" type="video/mp4" medium="video"></media:content>
        <media:content url="http://mschnlnine.vo.llnwd.net/d1/ch9/8/1/4/8/7/4/FunVisualStudioBreakpoints_ch9.wma" expression="full" duration="82" fileSize="1353785" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://mschnlnine.vo.llnwd.net/d1/ch9/8/1/4/8/7/4/FunVisualStudioBreakpoints_Zune_ch9.wmv" expression="full" duration="82" fileSize="2389915" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://mschnlnine.vo.llnwd.net/d1/ch9/8/1/4/8/7/4/FunVisualStudioBreakpoints_2MB_ch9.wmv" length="2675973" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Habib Heydarian</dc:creator>
      <itunes:author>Habib Heydarian</itunes:author>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Blogs/Habib+Heydarian/Fun with Breakpoints/RSS</wfw:commentRss>
      <category>Visual Studio Debugger</category>
    </item>    
</channel>
</rss>