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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 475 - 504 of 1074   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
490
nevermind. ht.Add("KeyName", dataread["KeyValue"].ToString().ToLower()); Worked for me. -- Programming today is a race between software engineers striving to...
Will Asrari
wasrari
Online Now Send Email
Jun 27, 2006
8:34 pm
491
Will, There is some flexibility with SQL bit columns and how you access and set them. Internally, the data is all stored in the same 1 or 0 format. Is the code...
Andrew Robinson
nemoby
Offline Send Email
Jun 27, 2006
9:16 pm
492
Try: Ht.Add("KeyName",Boolean.Parse(dataread["KeyValue"].)); -Wayne _____ From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On...
Wayne Berry
bellingham32
Offline Send Email
Jun 27, 2006
10:14 pm
493
That's what I ended up doing Wayne. Now I guess this leads to my next question. I have a series of checkboxes for my user configuration page and a check will...
Will Asrari
wasrari
Online Now Send Email
Jun 27, 2006
10:59 pm
494
This should work: cm.Parameters.Add("@Remote", SqlDbType.Bit); cm.Parameters["@Remote"].Value = cbRemoteTrans.Checked if not his is the cleanest alternative: ...
Wayne Berry
bellingham32
Offline Send Email
Jun 27, 2006
11:30 pm
495
Will, None of these: cm.Parameters["@Remote"].Value = cbRemoteTrans.Checked.ToString(); cm.Parameters["@Remote"].Value = > Boolean.Parse ...
Andrew Robinson
nemoby
Offline Send Email
Jun 28, 2006
3:06 am
496
Thanks a lot to the both of you. A nice crash course in SQL bit fields and Booleans! - Will -- Programming today is a race between software engineers striving...
Will Asrari
wasrari
Online Now Send Email
Jun 28, 2006
5:01 am
497
I am working on a SQL RS project (2nd one ever) and am having a bit of a problem with URL length. The report I am working with sends 18 parameters to the...
Will Asrari
wasrari
Online Now Send Email
Jul 3, 2006
6:40 pm
498
Nevermind, realized the path in the configuration needed to be: /report_directory/report_name instead of /report_directory/ Also, any input on CSV output with...
Will Asrari
wasrari
Online Now Send Email
Jul 4, 2006
12:13 am
499
Nevermind. Good to go! ... -- 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
Jul 4, 2006
12:59 am
500
I'm slowly grasping this whole SQL Reporting Services business but am still having problems with permissions-related issues. I am adding a web reference to...
Will Asrari
wasrari
Online Now Send Email
Jul 5, 2006
10:09 pm
501
I've recently created an application to be installed at 17 different locations around the globe. Each location utilizes a different server name and I want to...
Will Asrari
wasrari
Online Now Send Email
Jul 11, 2006
6:51 pm
502
<add key="MyServer" value="" /> WORKS! -- Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and...
Will Asrari
wasrari
Online Now Send Email
Jul 11, 2006
7:11 pm
503
Will, Pretty sure that (Local) is expanded by ADO.NET. "localhost" is an entry in your host file that points back to 127.0.0.1 which is the ip loopback...
Andrew Robinson
nemoby
Offline Send Email
Jul 11, 2006
8:58 pm
504
string ThisMachine = Server.MachineName.ToString().ToUpper(); Bob _____ From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On...
Bob Jones
rhj4
Offline Send Email
Jul 12, 2006
12:33 am
Messages 475 - 504 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