Over the past few months, Bob Jones and I have made contact with many of you that are using .NET in and around Bellingham and Whatcom County. A surprising...
Just a quick reminder. Our Wednesday meeting is tomorrow night. If you think you might be attending, can you please send me a quick email so we can get a rough...
I uploaded everything from last night's meeting. http://tech.groups.yahoo.com/group/BellinghamDotNet/files/ There are three solutions. Solution 0 was used for...
Andrew - Thank you for organizing the meeting and presenting the new features of 2.0. Very interesting presentation and discussion. Most everyone present ...
A few of us last night and today were discussing when the ASP.NET AJAX Library would be released. Well, the Release Candidate has been posted. Looking more and...
SP1 for Visual Studio has released. http://msdn.microsoft.com/vstudio/support/vs2005sp1/default.aspx Note that the "Visual Studio 2005 Team Suite SP1" includes...
See I didn't have to wait that long... ________________________________ From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On...
I am needing to build an array of items that were unchecked from a checkboxlist. I know that in System.Windows.Forms there is an ItemCheckEventArgs Class to...
I made the decision last week to pass on tomorrow night's monthly meeting. Life and work have just been too busy to properly prepare. Instead, I would like to...
Are you still planning lunch at Cafe Akroteri? If so, I would like to join you. I may be a few minutes late, though, due to class schedule and driving ...
Yes, sounds like we will have about 8 people plus you and anyone else. -A ... to join ... driving ... prepare. Instead, ... social in ... doing with ... the...
Probably 2 stupid questions but I figure I should ask anyway. At the very least I can gain some best practices or hear why my code sucks. Method that returns...
The using forces Dispose to be called. So to answer your own question use reflector on the SQL objects and see if Dispose calls close, if it does no need to...
public static Int32 NextDayId(string potLine) { int nextDayId = -1; if ( !ShiftExists(potLine) ) return 1; using ( SqlConnection cn = connection() ) using (...
Gotcha. ... -- Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to...
We had a great lunch today. Thanks for showing up! Upcoming events: February 7th 6pm at the St Luke's Education Center. Code Generation with Code Smith...
Or SqlConnection Dispose in the next version will not close -Wayne _____ From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On...
During Friday's lunch, there was a nice discussion about various methods and techniques for creating data access and business entity layers for data driven...
You got it! Lets see how many people show up in February before guessing at March. Also, A quick update on February's meeting: It will be held in the main...
I don't know if this is a compiler error or not. It all kind of makes sense but you would think that the compiler would check the types of the possible...
I have a typed datatable of items that need to be written to an xml file in a specific format. Writing the Xml file is the easy part. How difficult is it to...