Tuesday, June 27, 2006
If you're interested in getting up and running with the latest (June) CTP of WinFX... err... I mean .NET 3.0, Aaron's list of links is a great place to start.

Wednesday, June 28, 2006 12:28:26 AM (Central Daylight Time, UTC-05:00)  #    Disclaimer  |  Comments [0]  | 
If you're interested in SQL Server performance, check out A Faster Way to Get a Total Number of Rows in a Table (via Jason Haley). 

The commenters have a good point: if this is really a better way than COUNT(*), then why not optimize COUNT(*) to do the more efficient query behind the scenes?

Tuesday, June 27, 2006 3:51:02 PM (Central Daylight Time, UTC-05:00)  #    Disclaimer  |  Comments [0]  | 
 Tuesday, June 20, 2006

Resources Related to Web Service Factories

Presented at Memphis .NET User Group



Tuesday, June 20, 2006 8:05:29 PM (Central Daylight Time, UTC-05:00)  #    Disclaimer  |  Comments [0]  | 
 Friday, June 16, 2006
I learned something new today: when handling a user-initiated event from a combo box (when a user selects an item), most of the time you want to handle the SelectionChangeCommitted event, not the SelectedIndexChanged or SelectedValueChanged events - the latter two events may also fire when the combo box is changed through code.  From MSDN:
SelectionChangeCommitted is raised only when the user changes the combo box selection. Do not use SelectedIndexChanged or SelectedValueChanged to capture user changes, because those events are also raised when the selection changes programmatically.
The event order is [ChangeCommitted] >> [ValueChanged] >> [IndexChanged]



Friday, June 16, 2006 9:15:24 PM (Central Daylight Time, UTC-05:00)  #    Disclaimer  |  Comments [3]  | 
 Monday, May 22, 2006

Sometimes the best answer is not just a regular expression - it's a simpler regular expression and a little code.  Read Raymon Chen's take here: http://blogs.msdn.com/oldnewthing/archive/2006/05/22/603788.aspx.

It's good to be reminded that writing a regular expressions is not the hard part - reading it is.

Monday, May 22, 2006 6:38:17 PM (Central Daylight Time, UTC-05:00)  #    Disclaimer  |  Comments [0]  |