<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>dotUpdate() &#187; Visual Studio</title>
	<atom:link href="http://dotupdate.wordpress.com/category/visual-studio/feed/" rel="self" type="application/rss+xml" />
	<link>http://dotupdate.wordpress.com</link>
	<description>Useful information about C# and .Net</description>
	<lastBuildDate>Mon, 28 Jan 2008 13:18:34 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='dotupdate.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/7f71844728c1706e14f53bc26005a0d7?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>dotUpdate() &#187; Visual Studio</title>
		<link>http://dotupdate.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dotupdate.wordpress.com/osd.xml" title="dotUpdate()" />
		<item>
		<title>Cider Tricks: Menus, TabPages, ToolBars</title>
		<link>http://dotupdate.wordpress.com/2007/11/30/cider-tricks-menus-tabpages-toolbars-2/</link>
		<comments>http://dotupdate.wordpress.com/2007/11/30/cider-tricks-menus-tabpages-toolbars-2/#comments</comments>
		<pubDate>Fri, 30 Nov 2007 16:21:00 +0000</pubDate>
		<dc:creator>dotupdate</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Cider]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://dotupdate.wordpress.com/2007/11/30/cider-tricks-menus-tabpages-toolbars-2/</guid>
		<description><![CDATA[The frustrating thing about the WPF Designer in VS2008 (a.k.a. &#8220;Cider&#8221;) is that it does not support drag and drop placement of items for every control. The first three that I encountered were menus, toolbars&#160;and laying out controls on a tab page. The IDE does have some capability to facilitate the design of these items [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotupdate.wordpress.com&blog=1510168&post=15&subd=dotupdate&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The frustrating thing about the WPF Designer in VS2008 (a.k.a. &#8220;Cider&#8221;) is that it does not support drag and drop placement of items for every control. The first three that I encountered were menus, toolbars&nbsp;and laying out controls on a tab page. The IDE does have some capability to facilitate the design of these items that don&#8217;t require exclusive XAML coding. You just have to know the techniques to use them.<br />
<h5>Menus</h5>
<p>While you can add MenuItem to the toolbox, you can not drag it to the content portion of a Menu control in the designer. The easy way to create Menus is as follows:
<p>1. Drag a Menu control from the toolbox onto the window.
<p>2. Select the Menu control and find the Items property in the Property window. Click on the (&#8230;) icon. This will bring up the Collection Editor dialog.
<p>3. Use it to add MenuItems. You can edit the properties of each item (like the Header property) as well as add sub-items by clicking on the Items property of the MenuItem. For the sub-items, you can also add a separator.<br />
<h5>ToolBars</h5>
<p>Items in a ToolBar can only be added with the XAML editor. Once added, you can edit and move them using the Collection Editor for the ToolBar.<br />
<h5>TabControl</h5>
<p>You cannot layout controls directly on a TabItem for a TabControl. There are two tricks that are required: use a Grid panel and using the SelectedIndex to put each page in view for layout.
<p>1. Drag a TabControl from the toolbox onto the window.
<p>2. Using the Items propery in the Property window, add your TabItems and enter the Header properties for each one.
<p>3. In the XAML editor, add a Grid to each TabItem like this:</p>
<div style="border-right:gray 1px solid;border-top:gray 1px solid;font-size:8pt;overflow:auto;border-left:gray 1px solid;width:97.5%;cursor:text;max-height:200px;line-height:12pt;border-bottom:gray 1px solid;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;margin:20px 0 10px;padding:4px;">
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;">&lt;TabItem&gt;
    &lt;Grid/&gt;
&lt;/TabItem&gt;
</pre>
</div>
<p>4. Select the TabControl and locate the SelectedIndex property. Change the index to the page you want to layout. </p>
<p>5. Drag and drop items from the toolbox onto the Grid of the TabItem.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dotupdate.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dotupdate.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotupdate.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotupdate.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotupdate.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotupdate.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotupdate.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotupdate.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotupdate.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotupdate.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotupdate.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotupdate.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotupdate.wordpress.com&blog=1510168&post=15&subd=dotupdate&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotupdate.wordpress.com/2007/11/30/cider-tricks-menus-tabpages-toolbars-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/37b04d480ecd15e5890aa8cd26eb184a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dotupdate</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual Studio 411</title>
		<link>http://dotupdate.wordpress.com/2007/08/16/visual-studio-411/</link>
		<comments>http://dotupdate.wordpress.com/2007/08/16/visual-studio-411/#comments</comments>
		<pubDate>Thu, 16 Aug 2007 14:14:10 +0000</pubDate>
		<dc:creator>dotupdate</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://dotupdate.wordpress.com/2007/08/16/visual-studio-411/</guid>
		<description><![CDATA[Visual Studio has a powerful array of features that can greatly boost productivity&#8211;especially for new programmers who may not have a full grasp of the .Net framework.&#160; While the C# language itself&#160;is quite compact and comprehensible, the number of classes available in the .Net framework is almost mind boggling.&#160; How is a newcomer supposed to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotupdate.wordpress.com&blog=1510168&post=8&subd=dotupdate&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Visual Studio has a powerful array of features that can greatly boost productivity&#8211;especially for new programmers who may not have a full grasp of the .Net framework.&nbsp; While the C# language itself&nbsp;is quite compact and comprehensible, the number of classes available in the .Net framework is almost mind boggling.&nbsp; How is a newcomer supposed to remember it all?</p>
<p>The good news is that with Visual Studio you don&#8217;t have to.&nbsp; You just need to know how to get the information (&#8216;411&#8242;) when you need it.&nbsp; Here are the most helpful features for me:</p>
<h4><font color="#333333">Intellesense</font></h4>
<p>There are three big productivity enhancements that I get out of Intellesense.&nbsp; First, I use it to help find out what is possible with an object.&nbsp; By typing a &#8216;.&#8217; after the object name in a statement, the Intellesense drop down shows all of the properties and methods that are available to me.&nbsp; Icons by the names of the members indicate the type (properties: a page with a hand, methods: a diamond, events: a lightning bolt).&nbsp; Second, selecting one of the members gives a brief synopsis which includes the type of value returned and the arguments that are expected.&nbsp; After selecting, if I type another delimiter (a space, a dot, a parenthesis), Intellesense will&nbsp; enter the code for me reducing the possibility of making a typographical mistake.&nbsp; For methods, entering the open parenthesis results in Intellesense showing the possible overloads (different argument possibilities).&nbsp; Intellesense is almost like having an expert programmer sitting over your shoulder advising you every step of the way.</p>
<h4><font color="#333333">Dynamic Help</font></h4>
<p>Dynamic help is a way of quickly getting to more information from the MSDN documentation file.&nbsp; Turn this feature on using menu Help &gt; Dynamic Help.&nbsp; Now, when you click on an item in the code view or the designer view, a list of links to the Help documentation is presented.&nbsp; Click on a link and most likely you will get exactly the information you are seeking.</p>
<h4><font color="#333333">MSDN Documentation</font></h4>
<p>Newcomers need to understand the format of the help documentation so as not to be overwhelmed by its scope.&nbsp; Every class typically has the following organization: an overview page, a members page listing all properties, methods and events, finally leading to pages for individual members.&nbsp; More often than not, the individual members page will offer an example that can be adapted or even copied directly into the application.</p>
<h4><font color="#333333">Index</font></h4>
<p>For me, the most useful way of getting to the information in the documentation (outside of dynamic help) is to use the Index: menu Help &gt; Index.&nbsp; Also available are &#8216;Search&#8217; and &#8216;Content&#8217; but &#8216;Index&#8217; works best for me.</p>
<h4><font color="#333333">How do I</font></h4>
<p>Help &gt; How do I can also lead to helpful articles in the documentation for doing the most common tasks like File IO or drawing.</p>
<h4><font color="#333333">Getting Help Online</font></h4>
<p>Outside of Visual Studio there is a wealth of information.&nbsp; If I have a question about a control or how to do something, chances are good that someone else has had the same problem and has already posted the solution.&nbsp; I usually fire up a search engine and put in a few keywords about the problem along with &#8216;msdn&#8217;.&nbsp; This biases the search to either the msdn documentation or one of the msdn forums.</p>
<p>For me, asking a question in an online forum is my option of last resort.&nbsp; Not that it is a bad thing to do but the time I spend using the other resources available is always a valuable learning experience in itself and can turn up nuggets that can be used in later projects.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dotupdate.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dotupdate.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotupdate.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotupdate.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotupdate.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotupdate.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotupdate.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotupdate.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotupdate.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotupdate.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotupdate.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotupdate.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotupdate.wordpress.com&blog=1510168&post=8&subd=dotupdate&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotupdate.wordpress.com/2007/08/16/visual-studio-411/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/37b04d480ecd15e5890aa8cd26eb184a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dotupdate</media:title>
		</media:content>
	</item>
		<item>
		<title>Renaming things in Visual Studio</title>
		<link>http://dotupdate.wordpress.com/2007/08/14/renaming-things-in-visual-studio/</link>
		<comments>http://dotupdate.wordpress.com/2007/08/14/renaming-things-in-visual-studio/#comments</comments>
		<pubDate>Tue, 14 Aug 2007 12:03:11 +0000</pubDate>
		<dc:creator>dotupdate</dc:creator>
				<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://dotupdate.wordpress.com/2007/08/14/renaming-things-in-visual-studio/</guid>
		<description><![CDATA[Many newcomers to Visual Studio experience the problem of breaking their application after renaming something.&#160; I certainly have!&#160; First, there are many different names that are used to tag different things (see list below); second, there are multiple ways of renaming things and the impact on the IDE are not always clear to the novice; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotupdate.wordpress.com&blog=1510168&post=6&subd=dotupdate&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Many newcomers to Visual Studio experience the problem of breaking their application after renaming something.&nbsp; I certainly have!&nbsp; First, there are many different names that are used to tag different things (see list below); second, there are multiple ways of renaming things and the impact on the IDE are not always clear to the novice; third, renaming things can sometimes confuse the Designer and your program because of references to names in the Designer generated code and helper files.
<p>Here are some general guidelines that work for me:
<p>1. It is always easier to name things when you first add them to your project. This includes everything from the initial project name to the controls you drag to your form from the toolbox.
<p>2. Before renaming things like Classes, UserControls, NameSpaces, Assemblies etc, <b>back up your project</b>. This can be easily done in the Windows Explorer by making a copy of the Solution Folder for the project (found in your VS Projects Folder).
<p>3. To change the name of something in your user code such as NameSpace, Class or UserControl, select an instance of the name in your code editor and use the Refactor &gt; Rename function. You may have to rebuild the solution after this to get things back to normal.
<p>4. To change the name of the Solution File or Project File, use the Solution Explorer and right click &gt; Rename.
<p>Here is a list of various high-level names that one might want to manage:
<p><b>Solution Folder</b> – this is the name of the top folder in the ..\Visual Studio 2005\Projects Folder. Change in Windows Explorer. Note that it is possible that this will confuse the Recent Projects Start Page but you should be able to use Open …Projects to find it.
<p><b>Project Folder</b> – this is the name of the folder(s) inside the Solution Folder with project data. (A solution can have more than one project.) Change in Windows Explorer. Note that it is possible that this will confuse the Recent Projects Start Page but you should be able to use Open …Projects to find it.
<p><b>Solution File</b> – the name of the solution. Change in the Solution Explorer, right-click Rename. Note that it is possible that this will confuse the Recent Projects Start Page but you should be able to use Open …Projects to find it.
<p><b>Project File</b> – the name of the project. Change in the Solution Explorer, right-click Rename. Note that it is possible that this will confuse the Recent Projects Start Page but you should be able to use Open …Projects to find it.
<p><b>Assembly Name</b> – as found in Properties &gt; Application. This will be the name of your .exe file. Change in the Properties &gt;Application dialog.
<p><b>NameSpace</b> – also in Properties &gt;Application and in your code. This is useful for keeping your class and control names distinct from other code bases. Change using the Refactor.
<p><b>Title</b> – as found in Properties&gt;Application&gt;Assembly Information. This will be put in the title bar of the AboutBox. Change in the Assembly Information Dialog.
<p><b>Product</b> – also as found in Properties&gt;Application&gt;Assembly Information. This will be a name listed in the AboutBox. Change in the Assembly Information Dialog.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dotupdate.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dotupdate.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotupdate.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotupdate.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotupdate.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotupdate.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotupdate.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotupdate.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotupdate.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotupdate.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotupdate.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotupdate.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotupdate.wordpress.com&blog=1510168&post=6&subd=dotupdate&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotupdate.wordpress.com/2007/08/14/renaming-things-in-visual-studio/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/37b04d480ecd15e5890aa8cd26eb184a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dotupdate</media:title>
		</media:content>
	</item>
		<item>
		<title>Testing the Visual Studio Plug-in</title>
		<link>http://dotupdate.wordpress.com/2007/08/12/testing-the-visual-studio-plug-in/</link>
		<comments>http://dotupdate.wordpress.com/2007/08/12/testing-the-visual-studio-plug-in/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 00:33:12 +0000</pubDate>
		<dc:creator>dotupdate</dc:creator>
				<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://dotupdate.wordpress.com/2007/08/12/testing-the-visual-studio-plug-in/</guid>
		<description><![CDATA[Here is a&#160; code snippet from Visual Studio using the plug-in for Windows Live Writer.
        private void button1_Click(object sender, EventArgs e)
        {
            string[] names = { "Scott", "George", "Mike" };

 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotupdate.wordpress.com&blog=1510168&post=4&subd=dotupdate&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here is a&nbsp; code snippet from Visual Studio using the plug-in for Windows Live Writer.</p>
<pre>        <span style="color:rgb(0,0,255);">private</span> <span style="color:rgb(0,0,255);">void</span> button1_Click(<span style="color:rgb(0,0,255);">object</span> sender, <span style="color:rgb(43,145,175);">EventArgs</span> e)
        {
            <span style="color:rgb(0,0,255);">string</span>[] names = { <span style="color:rgb(163,21,21);">"Scott"</span>, <span style="color:rgb(163,21,21);">"George"</span>, <span style="color:rgb(163,21,21);">"Mike"</span> };

            <span style="color:rgb(43,145,175);">Database1DataSet</span>.<span style="color:rgb(43,145,175);">Table1Row</span> row;

            <span style="color:rgb(0,0,255);">foreach</span> (<span style="color:rgb(0,0,255);">string</span> name <span style="color:rgb(0,0,255);">in</span> names)
            {
                row = database1DataSet.Table1.NewTable1Row();
                row[<span style="color:rgb(163,21,21);">"name"</span>] = name;
                database1DataSet.Table1.AddTable1Row(row);
            }
</pre>
<pre>            table1TableAdapter.Update(database1DataSet.Table1);
            database1DataSet.Table1.AcceptChanges();
        }</pre>
<p><a href="http://11011.net/software/vspaste"></a>It works!!!</p>
<div style="border-right:gray 1px solid;border-top:gray 1px solid;font-size:8pt;overflow:auto;border-left:gray 1px solid;width:97.5%;cursor:text;max-height:200px;line-height:12pt;border-bottom:gray 1px solid;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;margin:20px 0 10px;padding:4px;">
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#0000ff;">public</span> <span style="color:#0000ff;">void</span> Page_Loaded(<span style="color:#0000ff;">object</span> o, EventArgs e)
{
    <span style="color:#008000;">// Required to initialize variables</span>
    InitializeComponent();
    <span style="color:#008000;">//Register the scriptable endpoints</span>
    WebApplication.Current.RegisterScriptableObject(<span style="color:#006080;">"basic"</span>, <span style="color:#0000ff;">this</span>);</pre>
</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dotupdate.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dotupdate.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotupdate.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotupdate.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotupdate.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotupdate.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotupdate.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotupdate.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotupdate.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotupdate.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotupdate.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotupdate.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotupdate.wordpress.com&blog=1510168&post=4&subd=dotupdate&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotupdate.wordpress.com/2007/08/12/testing-the-visual-studio-plug-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/37b04d480ecd15e5890aa8cd26eb184a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dotupdate</media:title>
		</media:content>
	</item>
	</channel>
</rss>