Tuesday, December 30, 2003

Are you ready for Yukon?

Yukon is coming!! It may still be awhile but if you developing with SQL and .NET this is a must see.

TechNet SQL Server Chat: Yukon for Developers, Sponsored by SSWUG
This web chat, sponsored by the SQL Server Worldwide User's Group (www.SSWUG.org) is a great place to come and discuss what's coming around the corner with YUKON and how the CLR will impact your development projects. Ask questions, get answers and find out what you need to know to start getting up to speed on this next release of SQL Server.

February 10, 2004
1:00 – 2:00 P.M. Pacific time
4:00 – 5:00 P.M. Eastern time
21:00 – 22:00 GMT/BST


Event Reminders


OutlookAdd to Calendar
FriendTell a Friend


9:12:04 AM    
comment [] trackback []

Free Web Services Management Software

An awesome tool that I have been working with that is highlighted on the .NET Wire site.

AmberPoint Releases Free Web Services Management Software For Visual Studio Users
AmberPoint Express is a free product for monitoring, diagnosing & troubleshooting Web services. It's a Visual Studio Add-in and will be distributed by MSFT with Whidbey. It helps developers that are building and deploying .NET Web services. Basic features include performance monitoring, error and bottleneck analysis, SOAP diagnostics, testing and integration


9:09:40 AM    
comment [] trackback []

Clearing Controls in a single loop

Here is an interesting code snippet. If you ever need to clear a large amount of text boxes on a form then the following code will do it. Of course based on the control type you can certainly change the type of control and you are off and running!

Dim ctrl As Control
For Each ctrl In Me.Controls
  
If TypeOf ctrl Is TextBox Then
          
ctrl.Text = ""
  
End If
Next


9:01:15 AM    
comment [] trackback []