<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>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><wfw:comment>http://blogs.vbcity.com/mcintyre/comments/9001.aspx</wfw:comment><comments>http://blogs.vbcity.com/mcintyre/archive/2008/03/16/9001.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.vbcity.com/mcintyre/comments/commentRss/9001.aspx</wfw:commentRss><trackback:ping>http://blogs.vbcity.com/mcintyre/services/trackbacks/9001.aspx</trackback:ping><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><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>OPTION STRICT WARN</title><link>http://blogs.vbcity.com/mcintyre/archive/2007/09/26/8728.aspx</link><pubDate>Wed, 26 Sep 2007 08:11:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2007/09/26/8728.aspx</guid><description>&lt;P&gt;What's the middle ground between &lt;FONT color=#ff0000&gt;OPTION STRICT ON&lt;/FONT&gt; and &lt;FONT color=#008000&gt;OPTION STRICT OFF&lt;/FONT&gt;?&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/vbteam/archive/tags/Jonathan+Aneja/default.aspx" rel=tag&gt;Jonathan Aneja&lt;/A&gt;&amp;nbsp;of the Microsoft Visual Basic team explains in his recent blog: &amp;nbsp;&lt;A href="http://blogs.msdn.com/vbteam/archive/2007/09/25/option-strict-custom.aspx"&gt;Option Strict [On|Off|SortOf]&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/8728.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>Visual Basic Pack for Visual Studio 2005 SDK</title><link>http://blogs.vbcity.com/mcintyre/archive/2007/09/22/8724.aspx</link><pubDate>Sat, 22 Sep 2007 12:13:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2007/09/22/8724.aspx</guid><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;If you are a&amp;nbsp;Visual Basic for .NET&amp;nbsp;programmer&amp;nbsp;who has tried&amp;nbsp;to extend Visual Studio in the past, &lt;U&gt;here's some really good news:&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;The &lt;/FONT&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3844FD97-51CB-4DD4-BC90-E149B8D360F1&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3844FD97-51CB-4DD4-BC90-E149B8D360F1&amp;amp;displaylang=en"&gt;&lt;FONT face=Verdana size=2&gt;Visual Basic Pack for Visual Studio 2005 SDK download&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; provides the SDK samples converted in the Visual Basic language and a new wizard that is used for generating Visual Basic based integration Packages for Microsoft Visual Studio. This download is an add-on to &lt;/FONT&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=51a5c65b-c020-4e08-8ac0-3eb9c06996f4&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?familyid=51a5c65b-c020-4e08-8ac0-3eb9c06996f4&amp;amp;displaylang=en"&gt;&lt;FONT face=Verdana size=2&gt;version 4.0 of the Visual Studio 2005 SDK&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt;. While VB support for the VS 2005 SDK is in the form of an independent add-on install, VB support for the upcoming VS 2008 SDK will be included (integrated in along with C++ and C# support). &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;FONT face=Verdana size=2&gt;This is the Visual Basic Pack for VS SDK 2005 V4 targeting VS 2005. It contains Visual Basic samples and wizards for creating VSIP packages using VB. These samples are the migrated CSharp samples that were shipped with VS SDK 2005 4.0. A new wizard has been added for the creation of VSIP package in Visual Basic.&lt;BR&gt;&lt;BR&gt;For more information and news about VSX (Visual Studio Extensibility), visit the VSX Developer center at &lt;/FONT&gt;&lt;A href="http://msdn.com/vsx"&gt;&lt;FONT face=Verdana color=#0033cc size=2&gt;http://msdn.com/vsx&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt; and the VSX Team Blog at &lt;/FONT&gt;&lt;A href="http://blogs.msdn.com/vsxteam"&gt;&lt;FONT face=Verdana color=#0033cc size=2&gt;http://blogs.msdn.com/vsxteam&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Verdana size=2&gt;.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/8724.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>How to Create Microsoft Access DataSource for Win Forms App Visual Basic 2005</title><link>http://blogs.vbcity.com/mcintyre/archive/2007/05/26/8325.aspx</link><pubDate>Sat, 26 May 2007 14:44:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2007/05/26/8325.aspx</guid><description>&lt;FONT size=1&gt;Source Code: &lt;/FONT&gt;&lt;A href="http://www.getdotnetcode.com/nexDotNet/030017AutobindDBToWinFormsApp_VB2005/AutobindDBToWinFormsApp_VB2005.htm"&gt;&lt;FONT size=1&gt;How to Create Microsoft Access DataSource for Win Forms App Visual Basic 2005&lt;/FONT&gt;&lt;/A&gt; 
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;How to Create Microsoft Access DataSource for Win Forms App Visual Basic 2005&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;
&lt;P&gt;Visual Studio 2005 provides a feature, the 'Data Source Configuration Wizard', for creating a DataSource for a Windows Forms 2.0 application. This article provides step-by-step instructions and a sample Visual Basic 2005 application you can use to learn how make a Microsoft Access database the data source for a Visual Basic Windows Forms application.&lt;/P&gt;
&lt;P&gt;The 'Data Source Configuration Wizard' creates a DataSource component that can be used to bind controls on a Windows form to database objects such as tables, stored procedures, and views.&lt;/P&gt;
&lt;P&gt;This article will serve as 'step one' for future articles that will explain how to use a DataSource in a Windows Forms application.&amp;nbsp; It is a generic introduction for creating a Windows Forms DataSource using options and practices that are known to work in the majority of development scenarios. Once you understand the basics you should explore the different options you can take during some of the steps, to understand when and why you may want to deviate from the steps presented below.&lt;/P&gt;
&lt;P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px"&gt;&lt;B&gt;Data Source Configuration Wizard&lt;/B&gt;&lt;/P&gt;
&lt;P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px"&gt;&lt;B&gt;Step-By-Step Instructions for Creating a DataSource&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;1.&amp;nbsp; Create a Visual Basic 2005 Windows Forms application solution.&lt;/P&gt;
&lt;P&gt;2.&amp;nbsp; Add a Microsoft Access database file (.mdb), for example the Microsoft Northwind.mdb file, to the solution's 'Bin' folder.&lt;/P&gt;
&lt;P&gt;3.&amp;nbsp; From the Visual Studio menu select: Data -&amp;gt; Add New Data Source...&lt;/P&gt;
&lt;P&gt;&lt;IMG height=99 src="http://getdotnetco.web119.discountasp.net/nexDotNet/030017AutobindDBToWinFormsApp_VB2005/01AddNewDataSource.jpg" width=238 border=0&gt;&lt;/P&gt;
&lt;P&gt;4. The 'Data Source Configuration Wizard' will open. Select 'Database' and then click the 'Next&amp;gt;' button.&lt;/P&gt;
&lt;P&gt;&lt;IMG height=338 src="http://getdotnetco.web119.discountasp.net/nexDotNet/030017AutobindDBToWinFormsApp_VB2005/02ChooseDataSource.jpg" width=431 border=0&gt;&lt;/P&gt;
&lt;P&gt;5. The 'Choose Your Data Source' step of the wizard will open. Click the 'New Connection..' button. &lt;/P&gt;
&lt;P&gt;&lt;IMG height=338 src="http://getdotnetco.web119.discountasp.net/nexDotNet/030017AutobindDBToWinFormsApp_VB2005/03ClickNewConnectionButton.jpg" width=431 border=0&gt;&lt;/P&gt;
&lt;P&gt;6. The 'Add Connection' dialog will open.&lt;/P&gt;
&lt;P&gt;Make sure the data source box reads: 'Microsoft Access Database File (OLE DB)'. If it does not, use the 'Change...' button to change the data source.&lt;/P&gt;
&lt;P&gt;Next, click the 'Browse..'. button. Use the 'Add Connection' dialog that opens to navigate to, and select, the Microsoft Access database you placed in your application's 'Bin' folder.&lt;/P&gt;
&lt;P&gt;&lt;IMG height=362 src="http://getdotnetco.web119.discountasp.net/nexDotNet/030017AutobindDBToWinFormsApp_VB2005/04AddConnection.jpg" width=332 border=0&gt;&lt;/P&gt;
&lt;P&gt;7. The path to your database should now be shown in the database file name box. Click the 'Test Connection' button to make sure the connection works and then click the 'OK' button.&lt;/P&gt;
&lt;P&gt;&lt;IMG height=362 src="http://getdotnetco.web119.discountasp.net/nexDotNet/030017AutobindDBToWinFormsApp_VB2005/05TestDatabaseConnection.jpg" width=332 border=0&gt;&lt;/P&gt;
&lt;P&gt;8. You will be returned to the 'Choose Your Data Source' step of the wizard. Click the 'Next&amp;gt;' button. &lt;/P&gt;
&lt;P&gt;&lt;IMG height=338 src="http://getdotnetco.web119.discountasp.net/nexDotNet/030017AutobindDBToWinFormsApp_VB2005/06ClickNextButton.jpg" width=431 border=0&gt;&lt;/P&gt;
&lt;P&gt;9. The 'Microsoft Visual Studio' dialog will open. This dialog asks if you would like to copy the file (database file) to your project. Click the 'Yes' button.&lt;/P&gt;
&lt;P&gt;&lt;IMG height=119 src="http://getdotnetco.web119.discountasp.net/nexDotNet/030017AutobindDBToWinFormsApp_VB2005/07CopyFileToProject.jpg" width=610 border=0&gt;&lt;/P&gt;
&lt;P&gt;10. The 'Save the Connection String the Application Configuration File' step of the wizard opens. Change the name of the connection string if desired. Click the 'Next&amp;gt;' button.&lt;/P&gt;
&lt;P&gt;&lt;IMG height=338 src="http://getdotnetco.web119.discountasp.net/nexDotNet/030017AutobindDBToWinFormsApp_VB2005/08SaveConnectionString.jpg" width=431 border=0&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;11. The 'Choose Your Database Objects' step of the wizard will open. Navigate the objects in your database using the tree view. Click checkbox(es) to select the database objects you desire to use in your Windows Forms application. After you have selected all the objects you desire to bind, click the 'Finish' button.&lt;/P&gt;
&lt;P&gt;&lt;IMG height=338 src="http://getdotnetco.web119.discountasp.net/nexDotNet/030017AutobindDBToWinFormsApp_VB2005/09ChooseDBObjects.jpg" width=431 border=0&gt;&lt;/P&gt;
&lt;P&gt;12. The rest of the steps in these instructions are not part of the wizard. &lt;/P&gt;
&lt;P&gt;In this step you will set a property to control how Visual Studio uses the Microsoft Access database file each time you build your project.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;View the 'Solution Explorer' panel in your solution. Right-click the Microsoft Access database you added to the project and select: Properties&lt;/P&gt;
&lt;P&gt;The example below shows how to select the database properties for a database named 'Northwind'.&lt;/P&gt;
&lt;P&gt;&lt;IMG height=474 src="http://getdotnetco.web119.discountasp.net/nexDotNet/030017AutobindDBToWinFormsApp_VB2005/10DataBaseCopyProperty.jpg" width=259 border=0&gt;&lt;/P&gt;
&lt;P&gt;13. The 'Properties' panel will open. In it set the 'Copy to Output Directory' property to: Copy if newer.&lt;/P&gt;
&lt;P&gt;&lt;IMG height=238 src="http://getdotnetco.web119.discountasp.net/nexDotNet/030017AutobindDBToWinFormsApp_VB2005/11CopyIfNewer.jpg" width=280 border=0&gt;&lt;/P&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/8325.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Mike McIntyre [MVP Visual Basic]</dc:creator><title>Search and Navigation Improvements on MSDN</title><link>http://blogs.vbcity.com/mcintyre/archive/2007/05/26/8324.aspx</link><pubDate>Sat, 26 May 2007 08:03:00 GMT</pubDate><guid>http://blogs.vbcity.com/mcintyre/archive/2007/05/26/8324.aspx</guid><description>&lt;P&gt;MSDN has had a face lift.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://msdn2.microsoft.com/en-us/vbasic/default.aspx"&gt;Visual Basic Development Center &lt;/A&gt;
&lt;P&gt;
&lt;P&gt;For an explanation of the search and navigation imporovements visit:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://msdn2.microsoft.com/en-us/bb457197.aspx"&gt;Search and Navigation Improvements on MSDN&lt;/A&gt;&lt;/P&gt;&lt;img src ="http://blogs.vbcity.com/mcintyre/aggbug/8324.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>