| Thread | Last Post | Replies |
|
| Mute system sound? | 08 Sep 2006 23:28 GMT | 1 |
How can I mute the PC's sound from a C# program (just as I would from the volume control in the systray)? Olav
|
| strong name validation failed: compiled in VS 2005 (.NET 2.0) but running under .NET 1.1 | 08 Sep 2006 22:45 GMT | 1 |
I have a simple unsigned .exe (only calls Microsoft assembly) built by vs2005 (e.g., .NET 2.0) and now want to execute it on .NET1.1. The following is my entire config file: <configuration>
|
| How to find the default value of primitive data type at runtime | 08 Sep 2006 21:51 GMT | 3 |
If I am woring with Generics I can do default(T) to find the default value, but I can't do default(this.myobj.GetType()). How do I find the default value? I >>> DO NOT <<< want to do something like the following...
|
| Implement a Time-out in the waitQueue of the ThreadPool | 08 Sep 2006 21:11 GMT | 4 |
We have a requirement to implement multithreaded processing for a function. ThreadPool is used to implement multithreading in order to avoid the over head of creating and destroying Threads dynamically. A function will Queues the method calls to the default ThreadPool. If the
|
| Finding Current/Active Session ID | 08 Sep 2006 19:27 GMT | 4 |
How can I know if the session ID that a certain process is running on is actually the active session that he consol is connected to. I can get the session id of a process by Process P = Process.GetCurrentProcess();
|
| Startin process with an argument like <D:\CD\data.prc> | 08 Sep 2006 18:51 GMT | 3 |
How can I start a new process with an argument in this form <D:\cd\Data.prc> ? string args1 = " <" + prozessFile + "> "; Process.Start("C:\\Direct.exe", args1);
|
| Shared memory still not exposed via managed classes in .NET 2.0? | 08 Sep 2006 17:32 GMT | 2 |
I was looking for managed classes that exposed shared memory figuring they would be part of the framework in 2.0. I couldn't find any. Am I just not looking in the correct place or is shared memory support still not in the product?
|
| Finding an available port for a socket connection? | 08 Sep 2006 17:29 GMT | 4 |
Hi. I am trying to set up a TcpListener to listen for incoming TCP connections, and one thing I have been wondering is whether there's a good way for finding an available port number, say, from a given range of ports.
|
| Class Library | 08 Sep 2006 15:45 GMT | 9 |
can anyone tell me why a class library i generated, compiled and installed does not show up as a reference in the ".Net" section of add a reference to my application.
|
| Program Installation problem | 08 Sep 2006 15:43 GMT | 2 |
I downloaded the SyncToy program from the Microsoft site and am trying to install it. It says that it requires .Net Framework v 1.1.4322. It directed me to the MS site which shows that the latest version of .Net Framework is 2.0. So I downloaded that (I'm on a dialup line and ...
|
| GPL / Open Source Application | 08 Sep 2006 13:39 GMT | 13 |
I want to publish my application under GPL so it is open source and everyone could modify it. How could I prevent my users from installing "unauthorized" versions by fault? Someone might add malicious code and my application is then blamed for it :-( I use already strong names to ...
|
| Convertin a PDF File into Word | 08 Sep 2006 13:36 GMT | 1 |
I am trying to build a small library ( in C# and VS2003) that accepts a PDF file and converts it to a word document. During this process all alignments are to be kept. Is there a way to deo it through code, I am playing with the
|
| Find out what called Finalize? | 08 Sep 2006 13:19 GMT | 3 |
I have a long-running application (sits in the system tray waiting for something to do and interacts with the user via form and some hardware) containing an object (a reference to the aforementioned hardware and its associated functionality) that occasionally will become ...
|
| Assembly.LoadFrom, .NET 2.0 | 08 Sep 2006 13:12 GMT | 1 |
Since we converted our application to C# 2005 and .NET 2.0 our "no-touch-deployment" mechanism is broken. The whole deployment is based on a bootstrapper (NetRun) that loads our main application using Assembly.LoadFrom.
|
| Calling functions from old DLL library (created in .NET) | 08 Sep 2006 13:05 GMT | 1 |
is any possibility how to use an old DLL library (created in Visual C++6) also in .NET 2005, in C# or in C++ application? How ? Tutotials needed .-)
|