| Thread | Last Post | Replies |
|
| VSS problem in using same projects in differenet solution | 26 Jun 2007 07:14 GMT | 3 |
I'm copying projects from a solution in the vss. In my local system i created solution ,added that project(make modification related to solution) When i added this solution to vss, projects are referred to the
|
| Handling a running Process | 26 Jun 2007 03:21 GMT | 7 |
I want to handle a running process. ex: explorer.exe How can i handle that process(explorer.exe). and is it possilbe to stop that process from runing.
|
| Synchronize the functions | 26 Jun 2007 03:15 GMT | 3 |
I have an application that is asynchronous in design. For example. obj.SendCommand(string cmd) and the result will be returned in a callback function. public void obj_OnCommandFinished(object sender, string result)
|
| External process fails with switch arguments | 26 Jun 2007 02:58 GMT | 9 |
I am attempting to fetch data from an external process. It seems to work OK with regular arguments, but not with switch arguments. Here is an example of a failure: ===================================
|
| How can I tell my app where it's executed from? | 26 Jun 2007 02:03 GMT | 2 |
I have an app where the first thing a user must do is load a specific type of file. I have provided a demo copy of this file with the app and stored it in the install directory - but I don't know where the user will install the app. How can I get the path to the install
|
| Constructor Choice - General Recommendations? | 26 Jun 2007 00:33 GMT | 1 |
Please note that this question is NOT about the merits of Microsoft certification (no need to get into that here). While taking a MS certification exam, I came across a question where it was obvious that two out of the five choices (a multiple choice question) would
|
| Remoting | 25 Jun 2007 23:50 GMT | 2 |
I realize this is a complicated scenerio to explain so hopefully it will make sense. I have an object that I create an instance of on a remote server. I can call functions on this object with no problem but one of the things that I'd like to do is create an instance of a ...
|
| Monitor the increase of file size | 25 Jun 2007 23:39 GMT | 1 |
Two processes query a disk file's file size, concurrently and frequently (in a loop), using the following lines: FileInfo objFileSize = new FileInfo(fileToCheck); outputFileSize = objFileSize.Length;
|
| How to Dump Data Causing FormatException? | 25 Jun 2007 21:50 GMT | 3 |
When I catch a System.FormatException, the most information it gives me is: "The string was not recognized as a valid DateTime." What is "the string" (i.e., its value)?
|
| Another Paging problem | 25 Jun 2007 20:39 GMT | 2 |
I'm fairly new to c# and Visual Studio. I've been having what seems like a common paging problem. When I try to change pages (even just from the first page to the second), the error comes up: Invalid CurrentPageIndex value. It must be >= 0 and < the PageCount.
|
| Delegates and Events - Trouble | 25 Jun 2007 19:56 GMT | 11 |
Hello, I am having trouble with the following console application. I am using delegates/event to make a clock raise an alarm when a certain amount of time has been reached. The following compiles, but code does nothing else then to produce an endless loop. Any help would be
|
| Attribute/Base Class Naming | 25 Jun 2007 19:20 GMT | 2 |
I am fairly new to creating custom attributes, and want to get a better feel for how they should be named. We have a class hierarchy, with a base class called "SequenceCommand". This class has a couple static functions and an embedded class, all of
|
| Declaring an array of List Generic Class elements | 25 Jun 2007 19:18 GMT | 6 |
I am declaring an element like this: public static List<myListElement> myList = new List<myListElement>(); I would like to declare an array of this myList. How would I modify the declaration of myList so it will represents an array?
|
| starting process with alternate credentials causes application error | 25 Jun 2007 19:06 GMT | 4 |
I am trying to get my .net page to run a simple batch file on my IIS server. I want it to run with specified credentials. It appears to start the program cmd.exe as the correct user (shows up in the task mgr) but it just hangs there and will never finish. Looking in the
|
| How to efficiently determine if a string contains any one of many strings | 25 Jun 2007 18:28 GMT | 9 |
I am interested in scanning web pages for content of interest, and then auto-classifying that content. I have tables of metadata that I can use for the classification, e.g. : "John P. Jones" "Jane T. Smith" "Fred Barzowsky" "Department of Oncology" "Office of Student Affairs" ...
|