<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Robert Green's Visual Basic Blog : Conferences</title><link>http://blogs.msdn.com/rgreen_msft/archive/tags/Conferences/default.aspx</link><description>Tags: Conferences</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Watch VSLive Keynotes</title><link>http://blogs.msdn.com/rgreen_msft/archive/2004/09/14/229508.aspx</link><pubDate>Tue, 14 Sep 2004 20:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:229508</guid><dc:creator>rgreen_msft</dc:creator><slash:comments>4</slash:comments><comments>http://blogs.msdn.com/rgreen_msft/comments/229508.aspx</comments><wfw:commentRss>http://blogs.msdn.com/rgreen_msft/commentrss.aspx?PostID=229508</wfw:commentRss><description>&lt;p&gt;&lt;font face="Verdana" size="2"&gt;The videos of the VSLive Keynotes are on the Fawcette web site. &lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="http://www.fawcette.com/vsm/2004_en/magazine/online/soma/"&gt;Soma &lt;/a&gt;announced VS 2005 Standard in his keynote and has the latest dev tools roadmap.&amp;nbsp;There is also a seperate link to the &lt;a href="http://www.fawcette.com/vsm/2004_en/magazine/online/saad/"&gt;reg-free COM demo &lt;/a&gt;in his keynote. Reg-free COM is coming in Whidbey and is an important piece of ClickOnce. This lets you install (on a Windows XP machine) any COM components in your application without having to write to the Registry. &lt;A href="http://blogs.msdn.com/dtemp"&gt;Dave Templin &lt;/a&gt;of the VB team is working on an article explaining this in detail. &lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="http://www.fawcette.com/vsm/2004_en/magazine/online/mendlen/"&gt;Dave Mendlen&lt;/a&gt;, who is now the Director of Web Services Technical Marketing, talks about Web services and SOA in his keynote. This is a good opportunity for you to get an understanding of what these are going to mean to VS developers today and over the next few years. &lt;/font&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=229508" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/rgreen_msft/archive/tags/Conferences/default.aspx">Conferences</category></item><item><title>Greetings from Orlando</title><link>http://blogs.msdn.com/rgreen_msft/archive/2004/04/21/117480.aspx</link><pubDate>Wed, 21 Apr 2004 17:20:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:117480</guid><dc:creator>rgreen_msft</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.msdn.com/rgreen_msft/comments/117480.aspx</comments><wfw:commentRss>http://blogs.msdn.com/rgreen_msft/commentrss.aspx?PostID=117480</wfw:commentRss><description>&lt;P&gt;&lt;FONT face=Verdana&gt;Good morning from Orlando. I am here for VSConnections. I flew down Sunday (7:20 AM flight through Dallas and then arriving in Orlando at 5:30 PM). Monday morning I was the demo guy (internally we use a different term but I'm not sharing that with you!) for Alan Griver's keynote. It went well. Alan did a very good job of laying out the vision for VS 2005. My first demo was of the Class Designer, which is a visual way of creating and managing classes in an application. You can drag a class out of the Toolbox onto the class diagram. This immediately creates a class file in your VS project. You can add the properties and methods in the Class Designer or in the&amp;nbsp;code editor. And&amp;nbsp;your code and the class diagram are continuously in synch. You can select a class in the designer and see not only its base classes but also its derived classes. Very nice!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;I next showed the Consolidated Insurance demo that Jay Roxe debuted at VSLive in Bill Gates' keynote. It shows a WinForm with some nice UI (a gradiant background supplied by an image) plus the new Toolstrip control with image buttons. I dragged and dropped claim data that came from an object. I then showed a snippet that uses My to talk to the printer and also Edit and Continue. Here is the snippet code:&lt;/FONT&gt;&lt;BR&gt;&lt;FONT face=Verdana size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; With My.Computer.Printers.DefaultPrinter&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Click for more: 'ms-help://MS.VSCC.v80/MS.MSDNQTR.80.en/commoner/redir/redirect.htm?keyword="a1520853-292b-4f38-b838-6a7fccc44a48"'&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .FontStyle = FontStyle.Bold + FontStyle.Italic&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .FontSize = 16&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .HorizontalAlignment = HorizontalAlignment.Center&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .WriteLine("Consolidated Insurance Claim " + curClaim.ClaimID)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .WriteLine("Claim Date: " &amp;amp; curClaim.IncidentDate.ToShortDateString)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .FontStyle = FontStyle.Regular&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .FontSize = 10&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .HorizontalAlignment = HorizontalAlignment.Left&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .WriteHorizontalLine(3)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .WriteLine()&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .WriteLine("Customer " + curClaim.Customer)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .WriteLine()&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .WriteImage(Me.PictureBox1.Image)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .PrintPreview()&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End With&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;Finally I showed the 2005 version of VS Tools for Office. I showed an Excel based expense report that gets expense data from a Web service. It also has 2 user controls, one that displays user info and one that displays the expense items. When you run the spreadsheet you see an Excel list and also the 2 user controls on the spreadsheet. How do you see user controls on the spreadsheet? Because they are added to the ActionsPane, which is similar to the Excel Task Pane except that it is a container for .NET controls. Here is the code that sits in the Workbook.vb file in this project:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Partial Class ThisWorkbook&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Cached()&amp;gt; Private Expenses As ExpenseData&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Private UserInfo As New UserInfoControl&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Private Transactions As New TransactionsControl&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Protected Sub ThisWorkboox_InitializationComplete(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Initialize&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.Expenses = ExpenseService.GetExpenses()&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.Expenses.Expense.Clear()&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.UserInfo.DataSource = Me.Expenses.ExpenseReport&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.Transactions.Expenses = Me.Expenses&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Globals.Sheet1.List1.DataSource = Me.Expenses.Expense&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT face=Verdana&gt;&lt;FONT size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.ActionsPane.BackColor = System.Drawing.Color.FromArgb(CType(101, Byte), CType(143, Byte), CType(224, Byte))&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.ActionsPane.Controls.Add(Me.UserInfo)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.ActionsPane.Controls.Add(Me.Transactions)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;BR&gt;End Class&lt;/FONT&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT&gt;&lt;FONT face=Verdana&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT face=Verdana&gt;The code retrieves expense info from the Web service, sends the expense report level data to the UserInfo control and then sends the expense items data to the Transactions control. List1 is an Excel 2003 list which we can now treat as a .NET object and the code sets the DataSource of the list. The last two lines add the two user controls to the ActionsPane and so they appear in the spreadsheet. The current version of VS Tools for Office is very cool and powerful and the next version is a tremendous leap forward over that. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT face=Verdana&gt;After the keynote I gave a Building Windows Apps in VB talk while Dan Fernandez gave the C# version of that talk. Then I did a Data talk which drilled down into the drag and drop data capabilities in VS. Sean Draine showed ClickOnce in the next talk and in the final talk Joe Binder drilled into some of the advanced VB language features and My.&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT face=Verdana&gt;In addition to showing lots of exciting new features and capabilities, we tried to get across the following very important points &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT&gt;&lt;FONT face=Verdana&gt;You get a lot of productivity from the data and My features.&amp;nbsp;We write a bunch of code&amp;nbsp;for you that you don't now have to learn and write yourself. However, be&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT&gt;&lt;FONT face=Verdana&gt;hind the scenes we are writing a lot of the same code that you have to write today. So there is not going to be a signficant performance penalty from using drag and drop data or using My. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT&gt;&lt;FONT face=Verdana&gt;VB and C# are both very powerful languages and will both continue to get more powerful (generics etc). But VB is also very heavily focused on productivity. So with features like My and background compilation and compiler warnings etc we want VB to both extremely powerful and extremely productive. &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT&gt;&lt;FONT face=Verdana&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=117480" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/rgreen_msft/archive/tags/Conferences/default.aspx">Conferences</category></item><item><title>VB Talks</title><link>http://blogs.msdn.com/rgreen_msft/archive/2004/03/18/92214.aspx</link><pubDate>Thu, 18 Mar 2004 23:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:92214</guid><dc:creator>rgreen_msft</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/rgreen_msft/comments/92214.aspx</comments><wfw:commentRss>http://blogs.msdn.com/rgreen_msft/commentrss.aspx?PostID=92214</wfw:commentRss><description>&lt;P&gt;&lt;FONT face=Verdana&gt;&lt;A href="http://blogs.msdn.com/duncanma/"&gt;Duncan &lt;/A&gt;and I are putting together a list of VB talks. The list will live on the &lt;A href="http://msdn.microsoft.com/vbasic/"&gt;VB Dev Center &lt;/A&gt;for all to see. We obviously know about the conferences and user groups that we will be speaking at, but we don't know about all the other VB happenings around the world. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;This is where you come in. Got VB talks at your user group? Sponsoring a conference with VB talks? Know of VB events? Send them to me and I'll get it on the VB Events list on MSDN. &lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=92214" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/rgreen_msft/archive/tags/Conferences/default.aspx">Conferences</category><category domain="http://blogs.msdn.com/rgreen_msft/archive/tags/User+groups/default.aspx">User groups</category></item><item><title>Upcoming events</title><link>http://blogs.msdn.com/rgreen_msft/archive/2004/03/17/91608.aspx</link><pubDate>Thu, 18 Mar 2004 04:02:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:91608</guid><dc:creator>rgreen_msft</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/rgreen_msft/comments/91608.aspx</comments><wfw:commentRss>http://blogs.msdn.com/rgreen_msft/commentrss.aspx?PostID=91608</wfw:commentRss><description>&lt;P&gt;&lt;FONT face=Verdana&gt;Lots happening, both soon and in the near future. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana&gt;Next week is VSLive! San Francisco (&lt;A href="http://www.ftponline.com/conferences/vslive/2004/sf/"&gt;http://www.ftponline.com/conferences/vslive/2004/sf/&lt;/A&gt;). Bill Gates is doing the keynote on Wednesday. After that we have the .NET Architecture Day. The talks are:&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Visual Studio 2005: Building and Deploying Windows Forms Applications and Deploying with ClickOnce - &lt;/SPAN&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;Jay Schmelzer&lt;/SPAN&gt;&lt;/I&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Visual Studio 2005: Building ASP.NET Web Applications - &lt;/SPAN&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;Rob Howard&lt;/SPAN&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Visual Studio 2005&lt;/SPAN&gt;: Data Access and XML - &lt;/SPAN&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;Steve Lasker&lt;/SPAN&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Visual Studio 2005&lt;/SPAN&gt;: Building Office Solutions with Managed Code - &lt;/SPAN&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;Eric Lippert&lt;/SPAN&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Visual Studio 2005&lt;/SPAN&gt;: Advanced Language and IDE Features - &lt;/SPAN&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;Amanda Silver&lt;/SPAN&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman'"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;FONT face=Verdana&gt;Look for trip reports next week. &lt;/FONT&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: 12pt; FONT-FAMILY: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face=Verdana&gt;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face=Verdana&gt;Apr 18-21 is VSConnections in Orlando (&lt;A href="http://www.devconnections.com/vs/"&gt;http://www.devconnections.com/vs/&lt;/A&gt;). ASPConnections and SQLConnections are&amp;nbsp;at the same time. Alan Griver is doing the VS keynote. Scott Guthrie is doing the ASP keynote. Tom Rizzo is doing the SQL keynote. Quite the lineup, eh? The Microsoft talks after the VS keynote are:&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Visual Studio 2005: Building ASP.NET Web Applications - &lt;/SPAN&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;(shared with the ASPConnections show and given by the ASP team)&lt;/SPAN&gt;&lt;/I&gt;&lt;/DIV&gt;Visual Studio 2005: Building Windows Forms Applications - &lt;/SPAN&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;me&lt;/SPAN&gt;&lt;/I&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Visual Studio 2005: Data Access and XML - &lt;/SPAN&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;me&lt;/SPAN&gt;&lt;/I&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Visual Studio 2005: Deploying Applications with ClickOnce - &lt;/SPAN&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;Sean Draine&lt;/SPAN&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Visual Studio 2005: Advanced Language and IDE Features - &lt;/SPAN&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;Joe Binder&lt;/SPAN&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;&lt;FONT size=3&gt;Also coming soon is the VB User Group Tour. This will occur in various cities in April and on into June. Look for more details shortly on MSDN. &lt;/FONT&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: Verdana; mso-bidi-font-size: 12.0pt"&gt;&lt;FONT size=3&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;&lt;FONT size=3&gt;Looking a bit further out we see &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;&lt;FONT size=3&gt;TechEd in&amp;nbsp;San Diego, May 23-28. And .NET Advisor Live in Las Vegas June 6-10 (&lt;A href="http://advisorevents.com/CMN0406p.nsf"&gt;http://advisorevents.com/CMN0406p.nsf&lt;/A&gt;).&amp;nbsp;I will be giving the keynote there. &lt;/FONT&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: Verdana; mso-bidi-font-size: 12.0pt"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;&lt;FONT size=3&gt;Hope to see you at one or more of these events. Make sure you stop by and say hi. Maybe I'll have bits in hand to give out. Who knows? &lt;/FONT&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: Verdana; mso-bidi-font-size: 12.0pt"&gt;&lt;FONT size=3&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"&gt;&lt;FONT size=3&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=91608" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/rgreen_msft/archive/tags/Conferences/default.aspx">Conferences</category></item></channel></rss>