| Thread | Last Post | Replies |
|
| Problem debugging asp code in DOTNET environment | 30 Mar 2006 14:36 GMT | 1 |
I have Microsoft visual studio dotnet 2003. I have asp code (old phasion - not dotnet). I want to debug the asp code, so :
|
| Current Working Directory of a process | 30 Mar 2006 08:54 GMT | 2 |
I'm writing an application in C# that runs a "cmd.exe" in another process. I need to get the working directory of the process without having to resort to issueing "echo %CD%" to the cmd process.
|
| Windows service problem with FTPWebRequest | 30 Mar 2006 08:37 GMT | 2 |
I've created an application that upload files to a ftp-server. Everything works like a charm when doing this from a windows form. But when I try the exact same thing from a Windows service I get an exception when calling the GetRequestStream on the FTPWebRequest object i.e when ...
|
| How to import Imports ROOT.CIMV2.Win32 | 30 Mar 2006 07:23 GMT | 4 |
I have a c# 2.0 class and am supposed to use: using ROOT.CIMV2.Win32; However, I can't figure out what I need to reference so I can use ROOT.CIMV2.Win32. Can someoen please advise?
|
| Need to upgrade to Framework 2.0 but continue to develop in Frame | 30 Mar 2006 03:12 GMT | 2 |
I am developing with Framework 1.1 but I have a new application that requires me to have Framework 2.0 installed on my computer. How can I continue to develop in Framework 1.1 if I have 2.0 installed?
|
| .NET service running as NetworkService - Access Denied? | 29 Mar 2006 23:25 GMT | 1 |
XP SP2, .NET 2.0. If I create a new/blank .NET service project, add the installer component, build and install the service... as soon as I "net start myservice" I get Access Denied. If I change NetworkService to LocalSystem or something else,
|
| WebException | 29 Mar 2006 18:18 GMT | 1 |
What 'period of time' are we talking about for a WebException in .net 2.0? System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of ...
|
| Regex question | 29 Mar 2006 18:15 GMT | 3 |
I want to create a regex (using C#) that split a String where a +: or ' character is found except if the specified character is preceeded by a ?. The ? act as a do not split here sign. Can anyone give me a hint how to create this regex.
|
| Stopping a thread "during" a statement | 29 Mar 2006 18:14 GMT | 2 |
I need to call a time-consuming stored procedure on an SQL Server. This means that a single SqlCommand.ExecuteNonQuery() call might take a couple of hours. That's why I put it into a subthread, so I can at least show the clock running.
|
| ActiveX in .net service | 29 Mar 2006 16:57 GMT | 1 |
I have .net service written in C#. This srevice uses a third party ActiveX for SNMP services. This ActiveX listens on port 162 and fires an event for ever SNMP response received. My program works fine on a Windows Forms appliction. However, SNMP response events are not fired
|
| "Strong name validation failed for assembly xxx" | 29 Mar 2006 16:56 GMT | 1 |
After converting to VS 2005 an assembly that used to run in a certain directory just fine does not do so any longer. Loading it results in the error "strong name validation failed for assembly xxx." It happens that this assembly is not strongly named, and it runs without error in ...
|
| Get this compile error "Could not copy temporary files to the output directory." | 29 Mar 2006 15:15 GMT | 2 |
When I build an exe file that use 6 class library dll I get this error. Could not copy temporary files to the output directory. The file 'MeltPracStorage.dll' cannot be copied to the run directory. Det går inte att komma åt filen eftersom den används av en annan process.
|
| Searching the process list | 29 Mar 2006 13:57 GMT | 1 |
I want to iterate the process list looking at the processes running for the current user. So I'm using: foreach (Process p in Process.GetProcesses()) {
|
| Additional component to web service | 29 Mar 2006 12:31 GMT | 3 |
I post here is because there is no one answer my question(10 days ago) in "web service" news group. I am going to implement a program on the web service side. The program will work with the web services so that it can do some check on the data before
|
| How to pause the timer created from System.Threading.Timer class | 29 Mar 2006 12:05 GMT | 4 |
Hi, I have one problem in pausing the timer which i have created from System.Threading.Timer class. // I can create a timer that waits one second, then invokes every second by
|