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 417 - 446 of 1074   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
417
Hi all, I have a C# project and I want to print all the code from all items included in it ( aspx, cs, etc. ). Is there a way to do this? I'm using VS .NET...
Elizabeth
eklpublic
Offline Send Email
Jan 3, 2006
11:07 pm
418
Does anyone have an Outlook tutorial CD-Rom I could borrow or know of a good website to take an online course about Outlook?...
EKHopper@...
lrk4luv
Offline Send Email
Jan 4, 2006
12:03 am
419
Guys, I am looking for an Image Generator (COM, Managed Code, or C) that will create Alpha Numeric 5 Digit characters for "Human Verification" on a web page....
Wayne Berry
bellingham32
Offline Send Email
Jan 4, 2006
3:48 pm
420
Captcha. Codeproject.com = Google of C# Tutorials http://www.codeproject.com/aspnet/CaptchaImage.asp -- Programming today is a race between software engineers...
Will Asrari
wasrari
Online Now Send Email
Jan 4, 2006
4:03 pm
421
Not code, but a good read: http://msdn.microsoft.com/asp.net/using/building/web/default.aspx?pull=/library/en-us/dnaspp/html/hip_aspnet.asp...
Andrew Robinson
nemoby
Offline Send Email
Jan 4, 2006
5:01 pm
422
I finally put up a blog: http://blog.binaryocean.com/ -Andrew...
Andrew Robinson
nemoby
Offline Send Email
Jan 5, 2006
5:58 pm
423
I don't how possible this is but figured I would at least ask. As part of a cost estimation application I am creating I am including a query that returns the...
Will Asrari
wasrari
Online Now Send Email
Jan 5, 2006
9:05 pm
424
Will, I might be misunderstanding your question but would adding a group by clause to your query get you the results you are looking for. You will need to...
Elizabeth
eklpublic
Offline Send Email
Jan 5, 2006
9:51 pm
425
Thanks Elizabeth. This will work nicely! - will -- Programming today is a race between software engineers striving to build bigger and better idiot-proof...
Will Asrari
wasrari
Online Now Send Email
Jan 5, 2006
10:03 pm
426
Hamster in Code: Outputting error messages is one of the hardest things I struggle with when writing applications. I have a newer .NET console application and...
Wayne Berry
bellingham32
Offline Send Email
Jan 10, 2006
1:03 am
427
Wayne, Great question. For almost 38 years, I have struggled with this issue and I still don't have any great insights. I find that when I fail to pass an ...
Bob Jones
rhj4
Offline Send Email
Jan 10, 2006
1:36 am
428
Ever wanted to set a breakpoint when a variable equals a particular value? if (System.Diagnostics.Debugger.IsAttached) { if (i == 25)...
Andrew Robinson
nemoby
Offline Send Email
Jan 10, 2006
6:18 am
429
I would lean towards wrapping your console app at a very high level and then handling the exception there. You likely can find existing exception classes for...
Andrew Robinson
nemoby
Offline Send Email
Jan 10, 2006
6:35 am
430
I think I am an Elvis . -Andrew From http://donxml.com/allthingstechie/archive/2006/01/11/2433.aspx (Don "XML" Demsak) Wizard Droppings (Noun): 1. The...
Andrew Robinson
nemoby
Offline Send Email
Jan 11, 2006
7:08 pm
431
LOL @ Wizard Dropper -- Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe...
Will Asrari
wasrari
Online Now Send Email
Jan 11, 2006
7:20 pm
432
I have a CleanData function in my application that strips nasties off of user-submitted text (i.e. >, <, ', etc...) and replaces them with nothing. string...
Will Asrari
wasrari
Online Now Send Email
Jan 14, 2006
3:24 am
433
Will, Not sure what is horribly "nasty" about the characters that you listed. ASP.NET does a pretty good job (not perfect) of blocking script on data entry. ...
Andrew Robinson
nemoby
Offline Send Email
Jan 14, 2006
4:06 pm
434
Gotcha. The reason why I wanted to strip those characters off is because I am doing a replace of a page title for a permalink structure. For example, if the ...
Will Asrari
wasrari
Online Now Send Email
Jan 15, 2006
5:15 am
435
Nothing directly to do with .NET: An interesting thread: http://www.newsgator.com/ngs/subscriber/WebEd2.aspx?fid=284135...
Andrew Robinson
nemoby
Offline Send Email
Jan 16, 2006
4:44 pm
436
The correct url: http://www.codinghorror.com/blog/archives/000490.html...
Andrew Robinson
nemoby
Offline Send Email
Jan 16, 2006
5:50 pm
437
Will - Here is an easy method to validate data that uses regular expressions. This is a stronger approach than using the replace function because it removes...
Chris Sandvig
c_sandvig
Offline Send Email
Jan 17, 2006
5:45 pm
438
Bingo! Thanks. - Will -- Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe...
Will Asrari
wasrari
Online Now Send Email
Jan 17, 2006
5:57 pm
439
I want to create a SQL Server 2000 view that combines 2 tables on 2 different servers. Both of the servers are in house and I have permissions to view both of...
Will Asrari
wasrari
Online Now Send Email
Jan 18, 2006
5:35 pm
440
Are you fully qualifying the remote server in your sql query? example: select * from RemoteServer.DataBase.Owner.Table GO select * from...
Andrew Robinson
nemoby
Offline Send Email
Jan 18, 2006
7:25 pm
441
I spend more and more time reading blogs. Great info and a great way to learn. If you are just getting started, check out NewsGator. They offer a free web...
Andrew Robinson
nemoby
Offline Send Email
Jan 26, 2006
5:53 pm
442
Reflector is a class browser for .NET components. It supports assembly and namespace views, type and member search, XML documentation, call and callee graphs,...
Andrew Robinson
nemoby
Offline Send Email
Jan 26, 2006
8:51 pm
443
It is a great way to look into all the .NET Objects and to steal peoples code. Basically you can reverse engineer any managed compiled code or look for...
Wayne Berry
bellingham32
Offline Send Email
Jan 27, 2006
1:11 am
444
Seems that everyone is now getting into it: Microsoft: http://www.microsoft.com/sql/editions/express/default.mspx ...
Andrew Robinson
nemoby
Offline Send Email
Feb 1, 2006
12:37 am
445
How big can a SQL Express DB be? I have heard that it is limited to 2GB. Is that true? Bob _____ From: BellinghamDotNet@yahoogroups.com ...
Bob Jones
rhj4
Offline Send Email
Feb 1, 2006
12:55 am
446
SQL Express is limited to 4 GB. I put up a table listing the major differences and will add to it over time. http://www.binaryocean.com/Express.aspx -Andrew ...
Andrew Robinson
nemoby
Offline Send Email
Feb 1, 2006
2:55 am
Messages 417 - 446 of 1074   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