| Thread | Last Post | Replies |
|
| buttonRun_Click(sender, e); | 05 Nov 2007 16:42 GMT | 1 |
1. Is this the correct code to have in toolStripStatusLabel3.TextChanged event to trigger another buttons click event? toolStripStatusLabel3.TextChanged += buttonRun_Click; buttonRun_Click(sender, e);
|
| Auto implemented properties in c# 3.0 | 05 Nov 2007 16:21 GMT | 3 |
What is the advantage of the new auto implemented properties introduced in ocras? For example is there any difference between public string Message;
|
| Default method on COM idl from C# interop | 05 Nov 2007 16:04 GMT | 1 |
May I have a method exported as default on a exported COM interop from a C# dll using attributes? Thanks in advance.
|
| unselect item in listbox | 05 Nov 2007 15:53 GMT | 1 |
i have a listbox w/ single select mode. Can a user unselect an item by clicking on it? How is it implemented? Thanks
|
| Any memory leak in this code snippet? | 05 Nov 2007 15:41 GMT | 3 |
Could you advise me if there could be any memory leak in this C# code snippet?: http://pastebin.com/m2d2ded2d As I understand, I have closed all risky objects: EventWaitHandle, and
|
| WebException | 05 Nov 2007 15:09 GMT | 5 |
I am getting the following error when trying to call GetRequestStream(): System.Net.WebException: The requested URI is invalid for this FTP command.. Code where the exception catches:
|
| Senior Project - Information System to Support Setting of Insurance Policy | 05 Nov 2007 12:21 GMT | 1 |
Hello everybody! I am new to the group so first of all I would like to greet everybody here. Now to my topic - The title of the topic is the title of my undergraduate senior project which I have to produce in C# using
|
| Ho to retrieve the CPU Usage in C# | 05 Nov 2007 11:34 GMT | 2 |
How Can I retrieve the CPU usage (%) and Number of the processors in my system? Thanks. naamala
|
| Assigning null to the locked object? | 05 Nov 2007 11:19 GMT | 1 |
Can I do this or it will give problems?: lock(this.myObject){ this.myObject.Dispose(); this.myObject = null;
|
| Insert text in a RichTextBox | 05 Nov 2007 11:13 GMT | 1 |
I have to insert serveral words in a RichTextBox control with a different size each one of then so why I need is how to insert a single word in this control giving the size. Thank you.
|
| Help a newbie with method.method? | 05 Nov 2007 10:19 GMT | 2 |
I'm teaching myself C# using "C# in easy steps" by Tim Anderson, which seems pretty good for a complete newbie. But I'm puzzled by this piece of example code: string theColor = textBox1.Text.Trim().ToUpper();
|
| "The Remote server returned an error :(407) Proxy Authentication Required " | 05 Nov 2007 09:57 GMT | 3 |
I have an windows application created in C# &it is running fine on several of our customer. It does a httpWebrequest in the background. Everything was working fine but some customer are facing
|
| Windows Service and the "RegisterServiceCtrlHandlerEx" function | 05 Nov 2007 09:14 GMT | 1 |
Hello Group, I'm writting a Windows Services under C# to get some USB events. Because the ServiceBase class does not supports the SERVICE_CONTROL_DEVICEEVENT handler, I'm using P/Invoke to call the RegisterServiceCtrlHandlerEx funtion, using a callback to manage the needed ...
|
| wfSpy and VS2005 | 05 Nov 2007 06:51 GMT | 6 |
I download wfspy src from http://www.codeproject.com/dotnet/wfspy.asp and convert and compile the source in VS 2005 I can generate the .exe and .dll but the compiler return the error : "Error spawning 'cmd.exe'
|
| How to monitor entire part of windows registry ? | 05 Nov 2007 05:27 GMT | 2 |
Dear group, I need to be aware of any changes happening in registry any time using c#. Is there any solution? Thanks
|