| Thread | Last Post | Replies |
|
| using lock | 25 Sep 2006 20:25 GMT | 3 |
I'am writing a multithread application. This application has let say label1. This label of course has it's own thread. Then the question is: Can i read label1.Text without invoking it just by using such a syntax in
|
| How to get rid of 'using' directives (automatically) | 25 Sep 2006 20:10 GMT | 2 |
I have some code from a different coder that starts with a lot of 'using' statements. To be able to read it more easily I'd like to get rid of the 'using' directives and instead have all the code show the fully qualified names.
|
| very strange error in debugger | 25 Sep 2006 19:28 GMT | 1 |
I start a new windows application in VS2005 (C#), adding 2 classes, try to run my project (in fact not mutch more than a form and a button), and I get following error: "Error while trying to run project: Could not load file or assembly 'Name' or one of its dependencies. The ...
|
| Remote Registry Backup | 25 Sep 2006 18:26 GMT | 4 |
I am modifying remote registries for about 150 computers. Is there any easy way in C# to do a remote registry backup?
|
| Login form when computer idle | 25 Sep 2006 17:54 GMT | 7 |
I would like to know how I go about showing a login form whenever the compuer is idle for 'x' minutes. I only know that it is going to use timers.
 Signature L. A. Jones
|
| Listing All Registered ActiveX Controls using c# | 25 Sep 2006 17:50 GMT | 1 |
How can I List All Registered ActiveX Controls using C# .Send code for that.I searched on net but I didnot get this.Send some usefull link if it not possible to send code. Waiting for reply.
|
| How can I List All Registered ActiveX Controls using C# | 25 Sep 2006 17:42 GMT | 1 |
How can I List All Registered ActiveX Controls .Send code for that.I searched on net but I didnot get this.Send some usefull link if it not possible to send code. Waiting for reply.
|
| Retrieve disk serial number | 25 Sep 2006 17:13 GMT | 1 |
I'm using the following code to retrieve the disk serial number of my hard disk, but have nagging doubts as to whether it'll work on other machines. Does anyone have experience of doing this who can advise whether I'm on relatively safe ground here:
|
| Help! Making wildcard TableAdapter query work | 25 Sep 2006 17:05 GMT | 2 |
I'm really confused here, and am wondering if someone knows what could be the issue with my TableAdapter query. A few months ago, I created a really neat program that has th ability to search by a client account number. In the TableAdapter, I created a
|
| WIA Captured Image Size | 25 Sep 2006 16:53 GMT | 1 |
I am using the WIA 2.0 library to capture a photo in C# from a webcam. The problem is the image size that is captured using device.ExecuteComman(CommandID.wiaCommandTakePicture) is only 160 x 120. Is there anyway to make the captured image larger? I have tried
|
| Calling EXE Function | 25 Sep 2006 16:45 GMT | 1 |
I am able to call the function exported by Exe from a dll file im getting the address of the function but whille calling that function im getting access violation Error as bellow my code Function Exported by EXE
|
| Drawing GDI types (Rectangle etc) on top of controls (C#) | 25 Sep 2006 16:29 GMT | 3 |
I have a requirement to draw a rectangle and a line on a the container control and sometimes as i move the mouse the drawing must occur on top of user controls and other controls, which are placed in the container control...
|
| Cannot see SQL Server instance | 25 Sep 2006 16:29 GMT | 2 |
I have an old application that was running OK. After I had to reformat my HD I installed .NET 2001 and SQL Server 2000. The old application does not work with the DB anymore. As now Security for SQL Server i sonly Windows based I changed the ConnectionString of the
|
| changing the background color of Selected Text in an RTB | 25 Sep 2006 16:04 GMT | 3 |
One quick question: It's really easy to change the background color of an entire RTB, but I have looked and looked and can't find a way to change the background color of the selected text in an RTB. Anyone know how?
|
| Interop: String or StringBuilder | 25 Sep 2006 14:49 GMT | 3 |
In P/Invoke situation, If some *out* parameter is LPWSTR, I can use string or StringBuilder. However, there is one problem about StringBuilder. By default, its Capacity is 16. If the returned string length is larger than 16. An ArgumentOutOfRangeExceptoin is raised.
|