| Thread | Last Post | Replies |
|
| Ensuring that it is safe to exit | 10 Aug 2006 20:42 GMT | 2 |
We have a synchronization scenario where we would like to ensure that it is safe to exit the main application before actually exiting. The scenario consists of one or more timers (or threads) that are running that are in mid-stream doing their assigned tasks, such as, for
|
| IMessageFilter | 10 Aug 2006 18:37 GMT | 1 |
I set up an IMessageFilter in an attempt to trap the WM_QUIT message from a plain C# windows forms application. I never get the WM_QUIT message. How come? I also get a number of messages that are way outside of the windows message
|
| AGAIN: updating the registry without rebooting the operating system | 10 Aug 2006 16:06 GMT | 5 |
How is this possible ? Some control panel items provide an apply button that instantly resets the registry change and continue with the changed settings. Here is the example :
|
| Getting the handler of an event with Reflection | 10 Aug 2006 16:04 GMT | 5 |
I have a base UserControl named UserControlEx. I have created an event, and a dummy handler. Then I create several UCs with UserControlEx base. Some of those have a handler for my custom event, others, no...
|
| Service packs for Windows contains .NET Framework 1.1? | 10 Aug 2006 15:53 GMT | 1 |
Which SP for Windows 2000 contains .NET 1.1? I found, that 2003 by default contains 1.1, but i need information about Windows 2000..... I cannot find any informaitons....
|
| Loading Assemblies | 10 Aug 2006 15:26 GMT | 2 |
The following code when run generates a file not found exception: AssemblyName aName = new AssemblyName(); aName.Name = "Martee.Entity"; Assembly assembly = Assembly.Load(aName);
|
| .NET 2.0 Install Cheker | 10 Aug 2006 13:41 GMT | 6 |
dont know if any one could help me. but i need a way to find out if .net 2.0 is installed before running the setup.exe file.. is there a small .exe some where that can pop up a message box if .NET 2.0 is not installed?
|
| Help with regular expression | 10 Aug 2006 13:31 GMT | 3 |
I have numbers I am trying to match, for example: input = "1.2.3.4" pattern = @"\d+\.\d+\.\d+\.\d+" But the problem is, three of them are optional and it is important which
|
| Compare Two Strings | 10 Aug 2006 13:30 GMT | 2 |
i have two strings .in first string a word file is there and the second string a html file is there.now i want to compare to both string if some word missing in second string then it should be highlight by color change.becaz it's a testing purpose tool
|
| Identifying UserName and password used | 10 Aug 2006 13:18 GMT | 3 |
I'm hosting WSE 3.0 SoapService based web service, which uses Basic authentication. Since, it's implemented from SoapService, a receiver function receives the soapenvelope. Client posts the soapenvelope using HTTP POST method. How can I get the
|
| Message based approach | 10 Aug 2006 13:08 GMT | 14 |
In a service oriented architecture, an application can call an external servie. an alternate approach is to use message based technique. following are the points that need calrifications?? 1. how does message based approach help?
|
| How do I get control when the close box is clicked? | 10 Aug 2006 09:27 GMT | 7 |
I would like to display a form to get some cleanup instructions when an app ends. From the Application.exit method my dialog flashes and leaves. Is there any way to capture the event before it is too late to show a form? Thanks
|
| Faillure to run .NET 2.0 app from UNC | 10 Aug 2006 07:07 GMT | 19 |
I've built an localised .NET 2.0 application, which runs fine on my development machine. But when I deploy the app, it fails to run from an UNC path. I've already used CASPOL to add FullTrust to the UNC. The error that occurs us the following:
|
| How to change DACL of a Windows Service in C#? | 10 Aug 2006 04:25 GMT | 4 |
The question is straightforward: How can I change Access Control List of a windows Service programmatically using C#. My goal is that a regular “User” should be able to start a windows service written in .NET.
|
| How should a Windows Service stop itself? | 10 Aug 2006 03:28 GMT | 12 |
I have written a multi-threaded Windows Service in .NET. During startup of the service I need to check for some condition and stop the service if the condition is not met. What is the best way to do that? Due to time constraints I have to check the condition in a separate ...
|