Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008


all groups > dotnet general > october 2005 > threads for tuesday october 25

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

Persistence frameworks
Posted by Joe at 10/25/2005 11:40:20 PM
I was wondering if there are any recommended persistence frameworks for use in .NET that could be recommended. I am looking for the following requirements: Free/Open Source or very inexpensive. Ease of deployment (no services to install/straight dll) Ability to define entity classes from exis...more >>

How to include asp file in C# coding
Posted by Shankar Arigela at 10/25/2005 10:39:03 PM
Hi, I have an .asp file, that has some functions written in LANGUAGE="JavaScript". I need to have a C# program, that includes this .asp file and use the functions written in it. I mean that I have to call the functions (present in .asp page and written in 'JavaScript'), pass required par...more >>

XML Characters not moved correctly to Data Set
Posted by u260044 at 10/25/2005 10:15:01 PM
I have a problem where the French translation for "side" gets converted incorrectly into a datatable from XML. Note: The total XML is at the bottom of the message to keep from distracting from the observation. Note: The characters used in this example are <Text>Côtés</Text> When I pu...more >>

What special for .net project in Software Development Life Cycle?
Posted by athos at 10/25/2005 8:50:13 PM
Hi all, Believe you have sound experience in development, however, if we look at the whole Software Development Life Cycle (SDLC) of the project, say, 1. Project Initiation, 2. Gathering Requirements, 3. System Analysis and Design, 4. System Development, 5. System Tes...more >>

Form.Showdialog Problem
Posted by Miguel Arenas at 10/25/2005 7:55:04 PM
I developed a application, and is working fine in Windows 2000, but in WinXP... Form1 call Form2.Showdialog, and when Form2 is closed I get a message error. I try other way, Form2.Show and this is working. Can somebody help me ?because I need to use Form2.Showdialog. Thanks....more >>

Namespace "Configuration" does not exist in Microsoft.practices.En
Posted by Bakunin at 10/25/2005 1:20:07 PM
Hi, I may be doing something dumb but.......I have been using the data access ent lib to do the HOL's. All is well. However I now want to add the data access functionality to my BTS2004 project, therefore requiring strong name key. When I try to compile the Data solution from source I get ...more >>

Please help with this regex
Posted by Chris at 10/25/2005 12:13:02 PM
Hi, I have a text box on a form and I am validating the data(street address) with the following expression ^[a-zA-Z\d]+(([\'\,\.\- #][a-zA-Z\d ])?[a-zA-Z\d]*[\.]*)*$. The following address works excellent 23-89 New Street 1 south william street The problem is I try puting "N'Select" and ...more >>

Reference passing
Posted by Shaun at 10/25/2005 11:56:29 AM
There is a function which in my DLL which is referenced by other C# projects. VectorPlane vPlane = new VectorPlane(100.0, 25.0, 65.0, "unbridged, extensible"); That object can be passed into a function called int ModifyObject(object obj); Using reflection, I can call functions which ...more >>



Delegation, Event-Listeners
Posted by mathon at 10/25/2005 11:26:02 AM
Hello, could anybody explain me the advantages and disadvantages of delegation and the advantages and disadvantages using event-listeners? - both related to the treatment of events. thanks in advance regards mat...more >>

manifest definition does not match the assembly reference
Posted by Bob at 10/25/2005 10:03:01 AM
I want to use a 3rd party assembly that links to a "4th party assembly." My problem is that I use a newer version of that 4th party assembly. When I add the assemblies as references to my application it won't run. I get an error, " The located assembly's manifest definition with name 'XXX' ...more >>

Microsoft Passport
Posted by ryan.d.rembaum NO[at]SPAM kp.org at 10/25/2005 9:56:37 AM
Hello, Quick question I hope: Can Microsoft Passport be used only by users with Internet access, or can you use it as long as the intranet web server has internet access. Thanks, Ryan ...more >>

Does the FileInfo.Copy method copy securly?
Posted by moonliver NO[at]SPAM gmail.com at 10/25/2005 9:07:50 AM
Our friends at VISA would like to know if fileinfo.copy copies the files securly or do I have to use scp or sftp. If its not secure, does anyone have any suggestions on what I could use besides scp or sftp. I have 450 stations that I have to get retreive files from securely and the deployment ...more >>

What's special for .net developing in gathering user requirement?
Posted by athos at 10/25/2005 8:52:32 AM
Hi All, Believe you have sound experience in development, however, before coding, when a project just started and is in User Requirement gathering, what special points shall we pay attention to, if the project is going to be done in .net? maybe it's a little bit abstract? well, i'd like to ...more >>

Stopping a running program.
Posted by UJ at 10/25/2005 8:48:16 AM
I've got a program that will do some updates to the system. During that time, if a certain program, called a.exe is running, I want to stop the program, do what I need to do and restart the program. How can I find out if a.exe is currently running and stop it? TIA - UJ. ...more >>

Calling Reflected Methods Asyncronously
Posted by Andy Furnival at 10/25/2005 8:47:08 AM
hi guys and gals, I've just run into an interesting problem. I'm trying to call assembly methods which are not bound to the main project assembly. The Interface is always the same, however due to differences in processing lenght, I thought it be better to invoke some of the methods asyncr...more >>

How to determine the items selected in ListBox Control
Posted by RandyS at 10/25/2005 8:39:05 AM
I know how to do it in VB6, but that doesn't work in .NET. I am trying to select single or multiple items to load into a collection. -- ..NET Developer in Training...more >>

need an access bit of code translated to sql / C# dot net
Posted by garyusenet NO[at]SPAM myway.com at 10/25/2005 6:56:02 AM
the following bit of code set to an onclick for a button in access works fine. Dim id As String id = DLookup("[name]", "beta", "[Value] = " & DMin "[VALUE]", "beta")) MsgBox id However trying to get this to work for my new sql database in c# is hard! first i tried to find a substitute ...more >>

AS400 + VB.NET and Regional Setting
Posted by Niyazi at 10/25/2005 5:40:11 AM
Hi, We have and IBM AS400 and I belive the reional setting is Turkish. The IBM Client-Access for Windows that install in our PC (WIN XP SP2) set to Turkish characters. Now my PC has English (US) regional setting and I am not having any problem to connect. But If I change my PC Region...more >>

Why migrate an application from VB6 to .NET
Posted by Hennesey at 10/25/2005 5:03:10 AM
Hello all, we have build a big application with VB6. Now I prefer to migrate to .NET. Maybe step by step. Therefore I'am looking for good arguments to persuade my boss. So what are the most important reasons for migrating a application from VB6 to .NET? Thanks in advance. Best reg...more >>

Progress Bar
Posted by Reggie at 10/25/2005 3:23:01 AM
Hi and TIA! When uploading files I would like to show a progress indicator as to what's going on. Currently the user clicks the button, the file gets uploaded, but there's no visual indication that the upload has even begun. Any advice or guidance is appreciated. Thanks for your time -- ...more >>

ASPNet Worker Process up to 99% again
Posted by Mark at 10/25/2005 2:41:17 AM
Hi - I have the old problem of my asp.net worker process shooting up to 99% - at which point my asp.net web app stops running. My app reads rows from a sql server database table, and on the While Read loop, appends certain information to a stringbuilder. When a certain condition is met, a su...more >>

Singleton vs Static Methods
Posted by Jake at 10/25/2005 1:16:03 AM
I'm just getting into design patterns and am not sure I fully understand the usefulness of the singleton. I know you can use it to ensure that you only have one instance of a class, but why would you do that rather then just using static methods on your class. Any input would be great. Than...more >>

Exception related to machine.config
Posted by Sheshadrinath R at 10/25/2005 12:13:02 AM
Hello, I have created a small project, which gives the dll when built. Other project, which is done in ASP.NET is using this dll as reference. So when I run the ASP.NET project sometimes, I will get this error. "An error occurred during the processing of a configuration file requi...more >>

Naming guidelines
Posted by Peter Bons at 10/25/2005 12:00:00 AM
Hi, I came across this URL that describes microsoft's point of view of naming conventions. I was wondering if these guidelines are available as PDF as well. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconnamingguidelines.asp Does anybody know where I...more >>

MDI BottomMost Child Window
Posted by rawCoder at 10/25/2005 12:00:00 AM
Hi, How can I have an MDI Child Window in such a way that all other MDI Child Windows appear OVER it. Its like a background window which will never overlap another MDI child window. Is this achieveable, this almost the BottomMost behaviour of an MDI Child Window? Is it possible to have this...more >>

SaveFile method..?
Posted by Brian Underhill via DotNetMonster.com at 10/25/2005 12:00:00 AM
Using C#, there is a SaveFile method under the .NET framework class. What do I need to include to get access to this? Is there a .NET library that you have to include? -- Message posted via DotNetMonster.com http://www.dotnetmonster.com/Uwe/Forums.aspx/dotnet-general/200510/1...more >>


DevelopmentNow Blog