Monday, July 17, 2006
If you are a .NET/SQL Server developer in or near the Memphis area, be sure to make plans for the first Memphis .NET code camp on August 26th - sponsored by the Memphis .NET user group.

Here is the official code camp site (if you're interested in speakers, sessions, etc) and remember to send a registration email.

Hope to see you there!

Monday, July 17, 2006 2:45:45 PM (Central Daylight Time, UTC-05:00)  #    Disclaimer  |  Comments [0]  | 
 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]  |