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 460 - 489 of 1074   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
460
A handful of us attended the Seattle Code Camp last October and I think that everyone got something out of it. Code Camp is now coming to Vancouver. This is a...
Andrew Robinson
nemoby
Offline Send Email
Mar 7, 2006
3:49 pm
461
I just registered and plan on attending unless something major comes up. Andrew which track are you going to do? - Will -- Programming today is a race between...
Will Asrari
wasrari
Online Now Send Email
Mar 7, 2006
4:10 pm
462
I would likely bounce back and forth between the two tracks. As always, there are time slots where I am not interested in either track and time slots where I...
Andrew Robinson
nemoby
Offline Send Email
Mar 7, 2006
4:29 pm
463
... http://www.microsoft.com/learning/mcp/offers/2ndchance/ -- Programming today is a race between software engineers striving to build bigger and better...
Will Asrari
wasrari
Online Now Send Email
Mar 10, 2006
5:43 pm
464
Lots of new goodies from Scott Guthery. Anyone working with ASP.NET 2.0 should take a look: http://weblogs.asp.net/scottgu/archive/2006/03/30/441465.aspx...
Andrew Robinson
nemoby
Offline Send Email
Mar 30, 2006
2:24 pm
465
You have to go through a couple of hoops and agree to be marketed to by Microsoft, but you can download Virtual Server 2005 Enterprise Edition for free: ...
Andrew Robinson
nemoby
Offline Send Email
Apr 3, 2006
4:44 pm
466
Web Application Projects allows Visual Studio to return to its ways of old. In VS2002 and VS2003, web sites had an application project much the same way that...
Andrew Robinson
nemoby
Offline Send Email
Apr 7, 2006
3:20 pm
467
I am working with an event hook into a class that returns several different types of values within its "e.ReturnValue" value and I only care about one specific...
Andrew Robinson
nemoby
Offline Send Email
Apr 27, 2006
8:56 pm
468
So if I am trying to see if a user has entered a valid date in a text field, I would write: DateTime myDate = txtDateField.Text as DateTime; if myDate is null...
Bob Jones
rhj4
Offline Send Email
Apr 28, 2006
3:40 am
469
Not exactly. In your case, you are converting from one type to another (string to a DateTime). You will have to explicity convert the txtDateField.Text to...
Andrew Robinson
nemoby
Offline Send Email
Apr 28, 2006
3:11 pm
470
Huh? You lost me on this. What my take-away is that the cost of understanding all the subtle nuances of this far exceeds the value of knowing it. So what if a ...
Bob Jones
rhj4
Offline Send Email
Apr 28, 2006
4:24 pm
471
Sounds like the difference between an artist and tradesman. -Wayne ... From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On...
Wayne Berry
bellingham32
Offline Send Email
Apr 28, 2006
4:30 pm
472
Wayne, Well said. I am too old and too lazy to pretend to be an artist any more. After decades of trying to get my strokes by having people say "Wow, what ...
Bob Jones
rhj4
Offline Send Email
Apr 28, 2006
4:53 pm
473
Looks like I opened a can of worms here. That was not my intention. I enjoy learning all that I can about ASP.NET & C#. I get a kick out of understanding what...
Andrew Robinson
nemoby
Offline Send Email
Apr 28, 2006
8:49 pm
474
Andy, I am with you - you will notice I don't have any pieces of furniture in my house held together with staples. -Wayne _____ From:...
Wayne Berry
bellingham32
Offline Send Email
Apr 28, 2006
9:34 pm
475
Consolas is one of a number of new fonts that ship with Vista. (And was the only reason that I installed one of the early builds of Vista.) Microsoft has now...
Andrew Robinson
nemoby
Offline Send Email
May 3, 2006
5:27 pm
476
The new Web Application Project model has been released. While new for VS 2005, WAP is in many ways a return to the old ways found in VS 2003. You can now set...
Andrew Robinson
nemoby
Offline Send Email
May 9, 2006
5:53 pm
477
Andy, The WAP looks like both a powerful and dangerous tool. Have you used it yet on existing 2005 projects? What happened? How does this impact the ...
Bob Jones
rhj4
Offline Send Email
May 9, 2006
6:21 pm
478
Bob, I have been using the release candidate for 2 or 3 weeks on a project that contains a couple of web sites and a couple of class libraries. No issues other...
Andrew Robinson
nemoby
Offline Send Email
May 9, 2006
6:36 pm
479
I am reading a project spec that indicates the application should contain no unmanaged code. According to Microsoft, managed code is code that sits on top of...
Will Asrari
wasrari
Online Now Send Email
Jun 9, 2006
9:14 pm
480
Will, My opinion is that you should only call managed API and not unmanaged APIs. -WAyne _____ From: BellinghamDotNet@yahoogroups.com ...
Wayne Berry
bellingham32
Offline Send Email
Jun 9, 2006
10:11 pm
481
I figured as much. Looks like I'm rewriting this thing. Thanks Wayne. ... -- Programming today is a race between software engineers striving to build bigger...
Will Asrari
wasrari
Online Now Send Email
Jun 9, 2006
10:27 pm
482
I am working on a project now for a client that requires all managed code. I have rewritten about 60% of the code and functionality in C# and have now come to...
Will Asrari
wasrari
Online Now Send Email
Jun 15, 2006
11:37 pm
483
I assume you are not writing the .exe? Does the .exe have a GUI? Do the buttons need to be pushed automatically? -Wayne _____ From:...
Wayne Berry
bellingham32
Offline Send Email
Jun 16, 2006
2:39 am
484
Thanks for the e-mail Wayne. I am not writing the software that is to be executed. All I know about the exe is that it loads user information for a POS...
Will Asrari
wasrari
Online Now Send Email
Jun 16, 2006
1:30 pm
485
I tried opening the exe on the server by double-clicking it and got the following error: "%E: Cannot find "\Ent=' parameter on the command line." So there is...
Will Asrari
wasrari
Online Now Send Email
Jun 16, 2006
3:36 pm
486
I have a page that contains two pairs of GridViews and ObjectDataSources and a third table (with lots of dynamically created LinkButtons) all three linked in a...
Andrew Robinson
nemoby
Offline Send Email
Jun 16, 2006
6:40 pm
487
Andy, The ODS code I sent you is heavily instrumented with TRACE statements that write to a log, just so I could follow the sequence of event firings. I ...
Bob Jones
rhj4
Offline Send Email
Jun 16, 2006
9:10 pm
488
Anyone using a .NET friendly content management system? Any recomendations? Microsoft's Content Management Server seems quite dated. -Andrew...
Andrew Robinson
nemoby
Offline Send Email
Jun 26, 2006
5:45 pm
489
I am working on an application that is going to handle many different permissions for users. I am trying to clean up the code that the previous developer left...
Will Asrari
wasrari
Online Now Send Email
Jun 27, 2006
7:45 pm
Messages 460 - 489 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