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.
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 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 ControlFor Each ctrl In Me.Controls If TypeOf ctrl Is TextBox Then ctrl.Text = "" End If Next 9:01:15 AM |
comment [] trackback [] |