Search the web
Sign In
New User? Sign Up
BellinghamDotNet · The Bellingham .NET Users Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 42 - 88 of 1073   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
42
... From: Glen Berry [mailto:glen@...] Sent: Sunday, February 06, 2005 10:21 AM To: 'Wayne Berry' Cc: 'Railboy' Subject: RE: .NET Programming ...
Wayne Berry
bellingham32
Offline Send Email
Feb 7, 2005
12:48 am
44
I haven't listened to any of these yet, but Fritz Onion is a very knowledgeable guy. I enjoyed his book. There are 4 future and 11 past (on demand) web casts. ...
Andrew Robinson
nemoby
Offline Send Email
Feb 14, 2005
4:59 pm
46
hi y'all, haven't met most of you yet but glad for the start we are having on a local .NET developer's community. So Janet and I are developing a WIndows Forms...
Tim Burnett
timnjanet
Offline Send Email
Feb 15, 2005
5:13 pm
47
Tim, Yes, we need to have another meeting. I will send out something before the end of the week. On the controls issue, I have never seen anything like that...
Andrew Robinson
nemoby
Offline Send Email
Feb 15, 2005
7:01 pm
53
http://blogs.msdn.com/brada/archive/2005/02/21/377628.aspx...
Andrew Robinson
nemoby
Offline Send Email
Feb 22, 2005
3:59 pm
54
hi all, Have you all seen that Microsoft has bundled and spiffed up all of their application blocks as the new patterns & practices Enterprise Library? It's a...
Tim Burnett
timnjanet
Offline Send Email
Feb 22, 2005
6:34 pm
55
hi Andrew, Thanks for your thoughts. We see this problem with the built in controls, user controls and actual custom controls (e.g. a new button class that...
Tim Burnett
timnjanet
Offline Send Email
Feb 22, 2005
6:40 pm
56
I watched the first part of this and found it to be pretty good. If you want to learn about xml, dom, xpath... ...
Andrew Robinson
nemoby
Offline Send Email
Feb 24, 2005
2:08 pm
62
Thanks to Wayne and Andy last night for the idea of setting the SQLConnecction.ConnectionTimeout property to solve the problem of very long running queries...
Bob Jones
rhj4
Offline Send Email
Mar 2, 2005
5:05 pm
63
The author of this was interviewed on this week's Dot Net Rocks Show. 25 and the first project he has ever worked on. Pretty amazing! Written in C#. The...
Andrew Robinson
nemoby
Offline Send Email
Mar 3, 2005
4:19 pm
64
http://www.apress.com/free/index.html A couple of good titles. -Andrew...
Andrew Robinson
nemoby
Offline Send Email
Mar 4, 2005
6:47 pm
65
Is there a simple way in Transact SQL to compare on Date without comparing on Time? For example, if I want all records that match a specific date, how do I...
Bob Jones
rhj4
Offline Send Email
Mar 8, 2005
7:41 pm
66
Just so everybody knows: I was the one who originally asked Bob if he knew a good way to do this, and he said, "Let's put it to the .NET group". I've since...
Rob Schripsema
robschripsema
Offline Send Email
Mar 8, 2005
7:58 pm
67
CONVERT(varchar(10),DateColumn,112) == CONVERT(varchar(10),DateColumn2,112) Convert to truncate strings, that just include the first 12 characters, i.e. ...
Wayne Berry
bellingham32
Offline Send Email
Mar 8, 2005
8:08 pm
68
Rob, You can also try: WHERE DATEDIFF('d',DateColum,DateColumn) <> 0 This gives the difference in days for the two columns and the diff is 0 they are the same...
Wayne Berry
bellingham32
Offline Send Email
Mar 8, 2005
8:12 pm
69
You all have just made my life worth living. Thanks for these tips, I struggle with date/time stripping all the time! -Syd ... Sydney P McGrath Email ....
Sydney Paige
sydney_mcgrath
Offline Send Email
Mar 8, 2005
8:14 pm
70
The suggestion solutions all work but I don't like too much the idea of converting to string for comparison. It seems like you could easily run into culture...
Tim Burnett
timnjanet
Offline Send Email
Mar 8, 2005
8:53 pm
72
The information is helpful, so I hate to critisize it, but your function is not coded properly. The block of code in the function as follows ** IF...
teri_moats
Offline Send Email
Mar 16, 2005
3:43 am
73
Thanks Teri, you are totally right! I actually realized this *oops* in the logic of my UDF in the middle of the night a few days ago and meant to write again. ...
Tim Burnett
timnjanet
Offline Send Email
Mar 16, 2005
5:15 am
75
I just came across these. The SQL Group is linked to off of the MS SQL 2005 page so nothing top-secrete here. ...
Andrew Robinson
nemoby
Offline Send Email
Mar 18, 2005
5:33 pm
76
Good links! I suspect they may not stay public for long. Bob ... From: Andrew Robinson [mailto:nemoby@...] Sent: Friday, March 18, 2005 9:34 AM To:...
Bob Jones
rhj4
Offline Send Email
Mar 18, 2005
10:08 pm
77
I want to setup multiple web sites, all under a common root. Here's what I want: * <file://www.dewaardandjones.com> www.dewaardandjones.com is a site written...
Bob Jones
rhj4
Offline Send Email
Mar 21, 2005
1:10 am
78
Bob, The issue you have with the step-up you want it that all image and include references need to be relative, i.e. "images/test1.gif", instead of virtual ...
Wayne Berry
bellingham32
Offline Send Email
Mar 21, 2005
1:31 am
79
Wayne, I have the sites working already as discrete names (e.g. test1.dewaardandjones.com, test2.... etc) using host headers. What I want is to have these...
Bob Jones
rhj4
Offline Send Email
Mar 21, 2005
2:12 am
80
Bob, I think your approach should work ok, but remember to configure / create the application name on the virtual directory if you are running .NET...
Andrew Robinson
nemoby
Offline Send Email
Mar 21, 2005
2:18 am
81
Did that, but these aren't .NET - just ASP. Still doesn't work. Bob ... From: Andrew Robinson [mailto:nemoby@...] Sent: Sunday, March 20, 2005 6:18 PM ...
Bob Jones
rhj4
Offline Send Email
Mar 21, 2005
2:32 am
85
Is there a limit to the amount of data I can attach to a response.redirect statement? I have heard that only 256 characters are allowed, but I don't believe it...
Bob Jones
rhj4
Offline Send Email
Mar 26, 2005
11:02 pm
86
Bob, This is limited by your browser. IE has a limit of 2048 in the url. Make sure to count the legth of the filename / path. Other browsers may be different. ...
Andrew Robinson
nemoby
Offline Send Email
Mar 26, 2005
11:21 pm
87
Bob, Here is a possible work around: Add your data to the server Cache using a GUID for a key. Cache.Add(yourdatakey, yourdata, null, DateTime.Now.AddMinutes ...
Andrew Robinson
nemoby
Offline Send Email
Mar 26, 2005
11:28 pm
88
Cool idea, but the pages are on different servers. Ideally, I would like to do a POST on the way out rather than what effectively amounts to a GET. Bob ... ...
Bob Jones
rhj4
Offline Send Email
Mar 26, 2005
11:37 pm
Messages 42 - 88 of 1073   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help