| Thread | Last Post | Replies |
|
| SecurityException with PerformanceCounter on remote server in .NET 2.0 | 25 Aug 2006 12:38 GMT | 3 |
I have been struggling with a security issue that occurs under .NET 2.0, but does not occur under .NET 1.1. Essentially I am trying to open up a performance counter on a remote server and monitor its value. In .NET 1.1 this worked fine, however under .NET 2.0 it fails when I
|
| cancel newline in multiline textbox | 25 Aug 2006 12:28 GMT | 4 |
I am using a multiline textbox with wordwrapping for creating "large" texts, but I dont want the user to be able to create a new line. The property called SuppressKeyPress seem to be the perfect way to solve this using the KeyDown event. It doesnt work.
|
| Software Copy Protection for .NET ? | 25 Aug 2006 11:16 GMT | 4 |
Hello Gents, I'm searching a good and affordable (max 160$) license copy protection library for C#. All solution I founds are very expensives... Any recommandations ?
|
| Retrieve version information | 25 Aug 2006 11:16 GMT | 2 |
I'm trying to put together a class that retrieves version information from my assembly and am having a problem. The code below happily retrieves the AssemblyTitle and AssemblyDescription but fails to retrieve the Version number. Both of these are specified in the AssemblyInfo.cs ...
|
| Open network printer as file in C# | 25 Aug 2006 11:05 GMT | 1 |
how do i open a network printer as a file in C#? I can open the printer and write a line to it in vb6 just like this: Open FindPrinter("\\ip123\thePrinter") For Output As #1 Print #1, "Hallo world!"
|
| How can i create the function of ScreenCapture in the windows service????? | 25 Aug 2006 10:06 GMT | 1 |
How can i create the function of ScreenCapture in the windows service?????
|
| It is necessary to synchronize the Console.WriteLine calls? | 25 Aug 2006 10:04 GMT | 4 |
Env: W2k, VS2005 Std Hi everybody, I have a application with threads writing simultaneously to the console with WriteLine. It is necessary the synchronization? I read http://msdn2.microsoft.com/en-us/library/system.console(VS.80).aspx but I
|
| Easy way to copy a List<List<T>> | 25 Aug 2006 09:51 GMT | 4 |
List<List<T>> a=param; List<List<T>> b=a; If I change b, then a is get changed. I want another copy of a, that is completely independent of a. I used double-nested for loop to copy each
|
| C# 2005 and simple graphics | 25 Aug 2006 09:40 GMT | 7 |
I have an empty project with a button on a form. What code do I need to put behind the button to draw a rectangle on my form when it is clicked?
|
| How to trim 0d0a from string | 25 Aug 2006 07:57 GMT | 3 |
I read a string from DataBase, I have there are 0d0a at the end of this string when display it as HEX. How can I trim 0d0a from my string?
|
| Why the XML node is saved differently ? | 25 Aug 2006 06:42 GMT | 15 |
I have an XML question: I'm have an XML node of type PointF and when it's saved to a file by XmlDocument.Save(...) it saves as I expect it to be saved: <ImageOrigin>{X=1.2, Y=3.4}</ImageOrigin>
|
| Disabled Control Font Colour change? | 25 Aug 2006 06:28 GMT | 4 |
Is it possible to change the forecolor of a disabled text control. I have a RichText Box that I don't want the user to edit but the Grey on Grey default is hard to read. Is there a way of overriding this with a custom colour?
|
| c# and updating the gui from a thread | 25 Aug 2006 06:19 GMT | 2 |
I'm aware of the ways MS has recommended updating the gui from a thread. eg. BeginInvoke(StartedExaminingFile, new object[] { file });
|
| Updating progress bar on Form1 FROM Form2 | 25 Aug 2006 05:48 GMT | 2 |
C# 2.0 How can i update my progress bar on Form1, from Form2? Form 2 contains a button that is supposed to update the progressbar on Form1 by 5 in value. I can't find out how to do this, please help me with some code samples :)
|
| Webbrowser.navigate() not firing | 25 Aug 2006 05:46 GMT | 2 |
I have been chasing this one down for a week and have narrowed it down to a machine issue. I have the following code: webBrowser.Navigate(http://finao.net/post_dkp.php?database=40);
|