<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" 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/"><channel><title>Visual Basic</title><link>http://blogs.vbcity.com/mcintyre/category/21.aspx</link><description>Visual Basic</description><managingEditor>Mike McIntyre [MVP Visual Basic]</managingEditor><dc:language>en-US</dc:language><generator>.Text Version 0.95.2004.102</generator><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>Use LINQ and Visual Basic 2008 to Get a List of Buttons from a Windows Forms Form</title><link>http://blogs.vbcity.com/mcintyre/archive/2008/10/19/9188.aspx</link><pubDate>Sun, 19 Oct 2008 13:50:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2008/10/19/9188.aspx</guid><description>&lt;FONT color=#0000ff&gt;&lt;FONT color=#0000ff&gt;
&lt;P&gt;&lt;FONT face=Verdana color=#000000 size=2&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#0000ff size=2&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;' Create a LINQ query.&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;Dim&lt;/SPAN&gt; buttonQuery = &lt;SPAN style="COLOR: blue"&gt;From&lt;/SPAN&gt; control &lt;SPAN style="COLOR: blue"&gt;In&lt;/SPAN&gt; &lt;SPAN style="COLOR: blue"&gt;Me&lt;/SPAN&gt;.Controls &lt;SPAN style="COLOR: blue"&gt;Where&lt;/SPAN&gt; &lt;SPAN style="COLOR: blue"&gt;TypeOf&lt;/SPAN&gt; (control) &lt;SPAN style="COLOR: blue"&gt;Is&lt;/SPAN&gt; Button&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: green"&gt;' Create a list of object.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;Dim&lt;/SPAN&gt; buttonList = buttonQuery.ToList&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: green"&gt;' Iterate through the objects in buttonList.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;For&lt;/SPAN&gt; &lt;SPAN style="COLOR: blue"&gt;Each&lt;/SPAN&gt; btn &lt;SPAN style="COLOR: blue"&gt;As&lt;/SPAN&gt; Button &lt;SPAN style="COLOR: blue"&gt;In&lt;/SPAN&gt; buttonList&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: green"&gt;' Show each button's text property.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;MessageBox.Show(btn.Text)&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;Next&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/9188.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>Rename Files with the Visual Basic My Namespace Computer Object</title><link>http://blogs.vbcity.com/mcintyre/archive/2008/10/19/9187.aspx</link><pubDate>Sun, 19 Oct 2008 13:38:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2008/10/19/9187.aspx</guid><description>&lt;FONT color=#0000ff&gt;&lt;FONT color=#0000ff&gt;
&lt;P&gt;&lt;FONT face=Verdana color=#000000 size=2&gt;My makes it easy to use .Net. &lt;/FONT&gt;&lt;FONT face=Verdana color=#000000 size=2&gt;Here's an example that uses My to rename a file:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana color=#000000 size=2&gt;&lt;STRONG&gt;Syntax:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&lt;FONT color=#000000&gt;&lt;SPAN style="COLOR: blue"&gt;Public&lt;/SPAN&gt; &lt;SPAN style="COLOR: blue"&gt;Shared&lt;/SPAN&gt; &lt;SPAN style="COLOR: blue"&gt;Sub&lt;/SPAN&gt; RenameFile ( _&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; file &lt;SPAN style="COLOR: blue"&gt;As&lt;/SPAN&gt; &lt;SPAN style="COLOR: blue"&gt;String&lt;/SPAN&gt;, _&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; newName &lt;SPAN style="COLOR: blue"&gt;As&lt;/SPAN&gt; &lt;SPAN style="COLOR: blue"&gt;String&lt;/SPAN&gt; _&lt;BR&gt;)&lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face=Verdana color=#000000 size=2&gt;file is the file path to the file to be renamed.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana color=#000000 size=2&gt;newName is the new name (with file extentsion) to be given to the file.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana color=#000000 size=2&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;My&lt;/FONT&gt;&lt;/FONT&gt;.Computer.FileSystem.RenameFile(&lt;FONT color=#a31515&gt;&lt;FONT color=#a31515&gt;"C:\OldName.txt"&lt;/FONT&gt;&lt;/FONT&gt;, &lt;FONT color=#a31515&gt;&lt;FONT color=#a31515&gt;"NewName.txt"&lt;/FONT&gt;&lt;/FONT&gt;)&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;&lt;FONT size=2&gt;Mike McIntyre&lt;/FONT&gt;&lt;BR&gt;&lt;FONT size=2&gt;&lt;A href="http://www.getdotnetcode.com/"&gt;Get Dot Net Code&lt;/A&gt;&lt;/FONT&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/9187.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>Silverlight Visual Basic How-Do-I Videos Available Now</title><link>http://blogs.vbcity.com/mcintyre/archive/2008/10/05/9178.aspx</link><pubDate>Sun, 05 Oct 2008 06:14:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2008/10/05/9178.aspx</guid><description>&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT face=Calibri&gt;The Silverlight team&amp;nbsp;has Visual Basic&amp;nbsp;How-Do-I videos, and all the code downloads are now equally available in VB and C#. &lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT face=Calibri&gt;&lt;A href="http://silverlight.net/learn/videocat.aspx?cat=2"&gt;Silverlight Visual Basic How-Do-I Videos&amp;nbsp;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/9178.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>New Microsoft C# Free Zone - Goto100</title><link>http://blogs.vbcity.com/mcintyre/archive/2008/06/12/9097.aspx</link><pubDate>Thu, 12 Jun 2008 07:05:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2008/06/12/9097.aspx</guid><description>Check it out:&amp;nbsp; &lt;A href="http://blogs.msdn.com/goto100/default.aspx"&gt;Goto100&lt;/A&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/9097.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>Look Mom, no parameters!  Relaxed delegates in Visual Basic 2008 (VB9)</title><link>http://blogs.vbcity.com/mcintyre/archive/2008/05/01/9053.aspx</link><pubDate>Thu, 01 May 2008 18:59:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2008/05/01/9053.aspx</guid><description>&lt;P&gt;&lt;FONT face=Verdana&gt;Relaxed delegate conversion, introduced in Visual Basic 2008,&amp;nbsp;enables you to assign subs and functions to delegates or handlers even when the signatures are not identical.&amp;nbsp;Therefore, binding to delegates becomes consistent with the binding already allowed in method invocations.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;In Visual Basic prior to 2008:&lt;/FONT&gt;&lt;/P&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;Sub OnClick&lt;STRONG&gt;(ByVal sender As Object, ByVal e As EventArgs)&lt;/STRONG&gt; Handles RunButton.Click&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MessageBox.Show("Visual Basic prior to VB 2008")&lt;BR&gt;End Sub&lt;/FONT&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;In Visual Basic 2008 (VB9)&lt;/FONT&gt;&lt;/P&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;Sub OnClick&lt;STRONG&gt;()&lt;/STRONG&gt; Handles RunButton.Click&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MessageBox.Show("Look Mom, no parameters!")&lt;BR&gt;End Sub&lt;/FONT&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;Details:&amp;nbsp; &lt;/FONT&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/bb531336.aspx"&gt;&lt;FONT face=Verdana&gt;Relaxed Delegate Conversion&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Mike McIntyre&lt;BR&gt;&lt;A href="http://www.getdotnetcode.com/"&gt;www.getdotnetcode.com&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;&lt;!----&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/9053.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>Visual Web Gui - ASP.NET web applications built with a .NET Windows Forms project!</title><link>http://blogs.vbcity.com/mcintyre/archive/2008/04/29/9052.aspx</link><pubDate>Tue, 29 Apr 2008 19:19:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2008/04/29/9052.aspx</guid><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Visual Web Gui is an open source product for&amp;nbsp;porting .NET Windows Forms applications to the web.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;It is used to create ASP.NET web applications with a very AJAX like experience - without the AJAX programming hassle.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;It may be worth it to you to give it a try. Though it's&amp;nbsp;little rough around the edges at this point,&amp;nbsp;this product can be used today to produce web applications from .NET Windows Forms projects. And - the developer is rapidly improving the product each month.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;It's easy to get started and it&amp;nbsp;to produce&amp;nbsp;useful web applications. I've been playing around with it for about a week and have already created two small web applications for IT management.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;The process is straight-forward:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;1. Download and install&amp;nbsp;the free Visual Web Gui Visual Studio project templates.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;2. Create a Visual Web Gui project. This is a Visual Studio Windows Forms project.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;3.&amp;nbsp;Build out the&amp;nbsp;Windows Froms application.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;4. Compile.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;5. Run result in web browser.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;6. Deploy to web server.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Visual Web Gui web site:&amp;nbsp; &lt;/FONT&gt;&lt;A href="http://www.visualwebgui.com/"&gt;&lt;FONT face=Verdana size=2&gt;http://www.visualwebgui.com/&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Visual Web Gui at CodePlex: &lt;/FONT&gt;&lt;A href="http://www.codeplex.com/VWGSilverlight"&gt;&lt;FONT face=Verdana size=2&gt;http://www.codeplex.com/VWGSilverlight&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mike McIntyre&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.getdotnetcode.com"&gt;www.getdotnetcode.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/9052.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>PInvoke Interop Assistant (FREE) - Making PInvoke Easier to Use</title><link>http://blogs.vbcity.com/mcintyre/archive/2008/03/16/9001.aspx</link><pubDate>Sun, 16 Mar 2008 09:29:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2008/03/16/9001.aspx</guid><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Jaren Parsons of the Microsoft Visual Basic Team created &lt;STRONG&gt;PInvoke Interop Assistant&lt;/STRONG&gt;. In a blog announcing the tool he says: &amp;#8220;The motivation behind this tool is writing PInvoke is a hard and often tedious task. There are many rules you must obey and many exceptions that must be taken into account.&amp;#8221;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Read about the tool and get a link to download it at: &lt;/FONT&gt;&lt;A href="http://blogs.msdn.com/vbteam/archive/2008/03/14/making-pinvoke-easy.aspx"&gt;&lt;FONT face=Verdana size=2&gt;Making PInvoke Easy&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/9001.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>XNA Game Development with Visual Basic 2005 - Thank you Alan Phipps</title><link>http://blogs.vbcity.com/mcintyre/archive/2007/10/07/8763.aspx</link><pubDate>Sun, 07 Oct 2007 20:35:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2007/10/07/8763.aspx</guid><description>&lt;P&gt;I am a professional business application developer, not a game developer.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;My programming language of choice is Visual Basic, through I am proficient with and have developed applications with many languages such as C, C++, SmallTalk, Java, and C#.&lt;/P&gt;
&lt;P&gt;I recently received a very important project request.&amp;nbsp;Though it&amp;nbsp;a request to develop a game, I couldn't turn it down.&amp;nbsp;My grandson wants me to help him develop a computer game.&lt;/P&gt;
&lt;P&gt;As a Microsoft MVP I am painfully aware that Microsoft has yet to port its XNA Game Studio Express to Visual Basic, its currently available only C#. While I did feel my grandson could learn and comprehend enough&amp;nbsp;Visual Basic to build a simple game&amp;nbsp;- in fact he has created a few simple programs with VB already - I didn't feel he would grok C#.&lt;/P&gt;
&lt;P&gt;So I did some research.&lt;/P&gt;
&lt;P&gt;I found that&amp;nbsp;Alan Phipps has created the free&amp;nbsp;XNA Game Engine for Visual Basic 2005. And he's published 2D and 3D tutorials to go with it.&lt;/P&gt;
&lt;P&gt;I downloaded the XNA Game Engine and after a quick look I went back to Alan's site and made a donation.&lt;/P&gt;
&lt;P&gt;Now I am well into completing the 2D tutorials and my first game.&lt;/P&gt;
&lt;P&gt;If you want to learn to develop games&amp;nbsp;with XNA and&amp;nbsp; Visual Basic 2005,&amp;nbsp; Alan's offering is a great way to get started.&lt;/P&gt;
&lt;P&gt;I thank you Alan and so does my grandson.&lt;/P&gt;
&lt;P&gt;Mike McIntyre [MVP] &lt;A href="http://www.getdotnetcode.com"&gt;http://www.getdotnetcode.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/8763.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>Free Line and Shape Controls for Visual Basic 2005</title><link>http://blogs.vbcity.com/mcintyre/archive/2007/10/06/8760.aspx</link><pubDate>Sat, 06 Oct 2007 08:40:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2007/10/06/8760.aspx</guid><description>&lt;FONT size=2&gt;Do you get frustrated trying to add graphics to you .NET Windows Forms applications? Learning to use the .NET graphics classes is not easy. Managing the graphics you create with the classes increases the amount of code you need to write.&lt;/FONT&gt; 
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;There was a line and shape control for creating graphics in Visual Basic before .NET. It was widely used by developers to easily decorate the Windows Forms they created with graphics. It was easy to use.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;The line and shape control was missing-in-action in Visual Basic for .NET 2002 and 2003.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;For Visual Basic 2005, Microsoft has provided a Power Pack that adds line and shape controls to Visual Studio 2005. The Power Pack includes controls that enable you to draw lines, ovals, and rectangles on forms and containers at design time.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;These controls provide an easy way to decorate a Windows Forms with graphics just like the VB6 line and shape control.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;And, the Power Pack controls introduce powerful new features to the shapes such as events. With events you can change the appearance of graphics at runtime based on events occurring in the application.&amp;nbsp; This adds a whole new dimension to line and shape controls. For example, add click and double-click events allow developers to respond and interact with end users.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;The new Line and Shape controls included in this version of the Visual Basic 2005 Power Packs are a set of three graphical controls that enable you to draw lines, ovals, and rectangles on forms and containers at design time. &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;Line and Shape controls encapsulate many of the graphics methods that are contained in the System.Drawing namespace. This enables you to draw lines and shapes in a single step &lt;U&gt;without having to create graphics objects, pens, and brushes&lt;/U&gt;. Complex graphics techniques such as gradient fills can be accomplished by just setting some properties.&lt;/FONT&gt;&lt;/P&gt;
&lt;H3&gt;&lt;FONT size=2&gt;Download and Try the Visual Basic Power Pack Line and Shape Controls&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;
&lt;P&gt;&lt;FONT size=2&gt;Download an installer at:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=92faa81e-e9c1-432c-8c29-813493a04ecd&amp;amp;displaylang=en"&gt;&lt;FONT size=2&gt;Microsoft Visual Basic 2005 Power Packs 2.0&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;During installation line and shape control Help is installed installed.&amp;nbsp; To learn how to use the line and shape controls search Visual Studio help for this topic:&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN id=nsrTitle&gt;&lt;FONT size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;B&gt;Introduction to the Line and Shape Controls&lt;/B&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;Also during installation, a Visual Studio PowerPacks v2.0 Toolbox Tab is added to Visual Studio 2005:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&lt;IMG src="http://getdotnetco.web119.discountasp.net/nexDotNet/020030PowerPackLineAndShapeControlsVB2005/Visual1.jpg" border=0&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;With it you can drag a line, and oval shape, or a rectangle shape onto the design surface of a Windows form.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&lt;IMG src="http://getdotnetco.web119.discountasp.net/nexDotNet/020030PowerPackLineAndShapeControlsVB2005/Visual2.jpg" border=0&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;Select a shape and use the 'Properties' pane to manipulate the shape.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&lt;IMG height=528 src="http://getdotnetco.web119.discountasp.net/nexDotNet/020030PowerPackLineAndShapeControlsVB2005/ManipulateImageWithProperties.jpg" width=521 border=0&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;The possibilities are nearly endless.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG height=273 src="http://getdotnetco.web119.discountasp.net/nexDotNet/020030PowerPackLineAndShapeControlsVB2005/EndlessPossibilities.jpg" width=276 border=0&gt;&lt;/P&gt;
&lt;P&gt;Mike McIntyre &lt;A href="http://www.getdotnetcode.com/"&gt;http://www.getdotnetcode.com&lt;/A&gt;&lt;/P&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/8760.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>Silverlight</title><link>http://blogs.vbcity.com/mcintyre/archive/2007/09/26/8730.aspx</link><pubDate>Wed, 26 Sep 2007 09:20:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2007/09/26/8730.aspx</guid><description>&lt;DIV class=postText&gt;
&lt;DIV class=postText&gt;&lt;FONT face=Verdana size=2&gt;Below are some of the links I have found useful for learning about, and developing with, the Microsoft Silverlight technologies.&amp;nbsp; &lt;/FONT&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;As a Visual Basic programmer you may want to start learning what Silverlight development is all about. Because Visual Basic in .NET can be used as a static or dynamic language, there are some unique&amp;nbsp;opportunities emerging in Silverlight development for Visual Basic programmers.&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE id=table1 cellSpacing=0 cellPadding=5 width="100%" bgColor=#ffffff border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;
&lt;DIV style="MARGIN-LEFT: 0px"&gt;
&lt;TABLE class=NSMetaData id=table2 cellSpacing=0 cellPadding=2 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="100%" colSpan=2&gt;&lt;B&gt;&lt;FONT size=1&gt;Microsoft Silverlight (WikiPedia) &lt;/FONT&gt;&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="10%"&gt;&lt;FONT size=1&gt;Abstract:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=1&gt;Microsoft Silverlight (code-named Windows Presentation Foundation/Everywhere or WPF/E) is a proprietary runtime for browser-based Rich Internet Applications, providing a subset of the animation, vector graphics, and video playback capabilities of Windows Presentation Foundation.&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;Title:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=1&gt;Microsoft Silverlight - Wikipedia, the free encyclopedia &lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;URL:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;A href="http://en.wikipedia.org/wiki/Microsoft_Silverlight"&gt;&lt;FONT size=1&gt;http://en.wikipedia.org/wiki/Microsoft_Silverlight &lt;/FONT&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;
&lt;DIV style="MARGIN-LEFT: 0px"&gt;&lt;FONT size=1&gt;&lt;BR&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV style="MARGIN-LEFT: 0px"&gt;
&lt;TABLE class=NSMetaData id=table3 cellSpacing=0 cellPadding=2 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="100%" colSpan=2&gt;&lt;B&gt;&lt;FONT size=1&gt;Microsoft Silverlight (Microsoft) &lt;/FONT&gt;&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="10%"&gt;&lt;FONT size=1&gt;Abstract:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=1&gt;Microsoft Silverlight is a cross-browser, cross-platform plug-in for delivering the next generation of .NET based media experiences and rich interactive applications for the Web. Silverlight offers a flexible programming model that supports AJAX, VB, C#, Python, and Ruby, and integrates with existing Web applications. Silverlight supports fast, cost-effective delivery of high-quality video to all major browsers running on the Mac OS or Windows.&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;Title:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=1&gt;Silverlight &lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;URL:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;A href="http://silverlight.net/"&gt;&lt;FONT size=1&gt;http://silverlight.net/ &lt;/FONT&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;
&lt;DIV style="MARGIN-LEFT: 0px"&gt;&lt;FONT size=1&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV style="MARGIN-LEFT: 0px"&gt;&lt;B&gt;&lt;FONT color=#ff0000 size=1&gt;Getting Started&lt;/FONT&gt;&lt;/B&gt;&lt;/DIV&gt;
&lt;DIV style="MARGIN-LEFT: 0px"&gt;&lt;FONT size=1&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV style="MARGIN-LEFT: 22px"&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;
&lt;TABLE class=NSMetaData id=table4 cellSpacing=0 cellPadding=2 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="100%" colSpan=2&gt;&lt;B&gt;&lt;FONT size=1&gt;1 Getting Started Video.htm &lt;/FONT&gt;&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;Title:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=1&gt;Silverlight: Get Started &lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;URL:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;A href="http://silverlight.net/GetStarted/"&gt;&lt;FONT size=1&gt;http://silverlight.net/GetStarted/ &lt;/FONT&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;&lt;FONT size=1&gt;&lt;BR&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;
&lt;TABLE class=NSMetaData id=table5 cellSpacing=0 cellPadding=2 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="100%" colSpan=2&gt;&lt;B&gt;&lt;FONT size=1&gt;2 Download the Runtime and Tools.htm &lt;/FONT&gt;&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;Title:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=1&gt;Silverlight: Get Started &lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;URL:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;A href="http://silverlight.net/GetStarted/"&gt;&lt;FONT size=1&gt;http://silverlight.net/GetStarted/ &lt;/FONT&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;&lt;FONT size=1&gt;&lt;BR&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;
&lt;TABLE class=NSMetaData id=table6 cellSpacing=0 cellPadding=2 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="100%" colSpan=2&gt;&lt;B&gt;&lt;FONT size=1&gt;3 Learn from Samples and Documentation.htm &lt;/FONT&gt;&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;Title:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=1&gt;Silverlight: Get Started &lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;URL:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;A href="http://silverlight.net/GetStarted/"&gt;&lt;FONT size=1&gt;http://silverlight.net/GetStarted/ &lt;/FONT&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;&lt;FONT size=1&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;&lt;FONT color=#ff0000 size=1&gt;&lt;B&gt;Other Starlight Videos&lt;/B&gt; &lt;BR&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/FONT&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;
&lt;TABLE class=NSMetaData id=table7 cellSpacing=0 cellPadding=2 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="100%" colSpan=2&gt;&lt;B&gt;&lt;FONT size=1&gt;How Do I with Silverlight 1 0.htm &lt;/FONT&gt;&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;Title:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=1&gt;Silverlight: Videos &lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;URL:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;A href="http://silverlight.net/learn/learnvideos.aspx#cat2"&gt;&lt;FONT size=1&gt;http://silverlight.net/learn/learnvideos.aspx#cat2 &lt;/FONT&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;&lt;FONT size=1&gt;&lt;BR&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;
&lt;TABLE class=NSMetaData id=table8 cellSpacing=0 cellPadding=2 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="100%" colSpan=2&gt;&lt;B&gt;&lt;FONT size=1&gt;How Do I with Silverlight 1 1.htm &lt;/FONT&gt;&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;Title:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=1&gt;Silverlight: Videos &lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;URL:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;A href="http://silverlight.net/learn/learnvideos.aspx#cat2"&gt;&lt;FONT size=1&gt;http://silverlight.net/learn/learnvideos.aspx#cat2 &lt;/FONT&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;&lt;FONT size=1&gt;&lt;BR&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;
&lt;TABLE class=NSMetaData id=table9 cellSpacing=0 cellPadding=2 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="100%" colSpan=2&gt;&lt;B&gt;&lt;FONT size=1&gt;MIX 2007 Key Note.htm &lt;/FONT&gt;&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="10%"&gt;&lt;FONT size=1&gt;Comments:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=1&gt;This is a long video but really worth watching to understand where Silverlight fits into the application development framework. Ray Ozzie introduces the high level vision. Scott Guthrie gives the 'hands on' demos.&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;Date Accessed:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=1&gt;26 Sep. 2007 &lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;URL:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;A href="http://sessions.visitmix.com/view_07.asp?pid=KYN001"&gt;&lt;FONT size=1&gt;http://sessions.visitmix.com/view_07.asp?pid=KYN001 &lt;/FONT&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;&lt;FONT size=1&gt;&lt;BR&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;
&lt;TABLE class=NSMetaData id=table10 cellSpacing=0 cellPadding=2 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="100%" colSpan=2&gt;&lt;B&gt;&lt;FONT size=1&gt;MIX 2007 Silverlight Sessions.htm &lt;/FONT&gt;&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;Title:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=1&gt;Silverlight: Videos &lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;URL:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;A href="http://silverlight.net/learn/learnvideos.aspx#cat4"&gt;&lt;FONT size=1&gt;http://silverlight.net/learn/learnvideos.aspx#cat4 &lt;/FONT&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;&lt;FONT size=1&gt;&lt;BR&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class=NSMetaData style="MARGIN-LEFT: 0px"&gt;
&lt;TABLE class=NSMetaData id=table11 cellSpacing=0 cellPadding=2 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="100%" colSpan=2&gt;&lt;B&gt;&lt;FONT size=1&gt;Using Blend with Silverlight 1 0.htm &lt;/FONT&gt;&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;Title:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=1&gt;Silverlight: Videos &lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%"&gt;&lt;FONT size=1&gt;URL:&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;A href="http://silverlight.net/learn/learnvideos.aspx#cat3"&gt;&lt;FONT size=1&gt;http://silverlight.net/learn/learnvideos.aspx#cat3 &lt;/FONT&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Mike McIntyre &lt;/FONT&gt;&lt;A href="http://www.getdotnetcode.com/"&gt;&lt;FONT face=Verdana size=2&gt;http://www.getdotnetcode.com&lt;/FONT&gt;&lt;/A&gt; &lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/8730.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>