I kind of dropped the ball on last night's monthly dinner. Just too busy and it seemed like it would have a low attendance draw the day after a long weekend. ...
I am stuck on this and I know it is something small, can someone give me a pointer as to what might be causing this error? Here is a portion of the code: ...
I have the following sql statement, typically it would grab a specific value but I also want to be able to grab all values within the database. Can I use the...
Just eliminate your entire WHERE clause. SELECT tblRacers.RacerID, tblRacers.strLName, tblRacers.strFName, tblRacers.strAgeCat, tblRacers.strRaceCat FROM...
It sounds like you might be prompting the user for an age and race. If the user enters a value for the prompts, the query should return only matching records....
I like this technique (from the google post) - very nice. One thing to watch out for, though: If the user enters "2" at the prompt for the age of the cat, this...
Yup, thanks David and everyone else. For the time being last night I just went ahead and added a seperate subroutine that checked to see if the value for both...
Luckily I am restricting users to what they can supply for those categories. The application is for a backend on an event registration site. There are only...
I can make it. 6:00PM @ La Fiama? Bob ... From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On Behalf Of Andrew Robinson Sent:...
My hope was the meetings I currently have at that time on Tuesdays would be moved to Monday by now but looks like we are holding off a few more weeks so I...
A few or you have expressed interest in getting together but are not able to make dinner meetings. If anyone would like to meet up, discuss .NET, SQL, Visual...
This may seem like an odd thing to do, but is there a way to blindly post to a form. By that I mean, sending data (First_Name=John) without actually having the...
Matt, This is how I see things going down: Use the checkbox like you were originally going to do. Create a separate sub routine such as MailingList_Add()....
The reason I am looking at doing it this way is because the newsletter application uses a seperate database than what I am using for the registration. Tying...
Combine the suggestions from Chris & I: Set the cbNewsLetter as a boolean. global -> bolNewsLetterChecked = FALSE OnCheckedChanged = "NewsLetterCheck" Sub...
Will, Why force the server round trip when the user clicks on the check box: OnCheckedChanged = "NewsLetterCheck" You could just as easily read the your...
That's what I had 2 replies ago. Chris wrote something about a boolean trigger so I added that. But yeah, you're right. - will ... -- aim: willacious...
Another way of looking at this - I don't know if it aligns with the requirements of your assignment or not... In some environments, it may not make the most...
Thanks everyone, got it to work with the suggestion Chris made. Ultimately combining the seperate databases together, removing duplicate fields so the DB is...
SQL Server™ 2005, Visual Studio(r) 2005 and BizTalk(r) Server 2006 will be formally launched during the week of Nov. 7 Of note: Microsoft released the June...
I have been working a lot with DataGrids and now the new GridView control inside of VS 2005. I was wondering if I could put a GridView inside of another...