| Thread | Last Post | Replies |
|
| Force references to run against .NET 1.1 | 14 Jun 2006 03:17 GMT | 5 |
I am developing in VS2005, but I have some third-party DLL's that appear to only work correctly when compiled in VS2003. ("Incorrect" operation is defined as a busy-wait that kicks in on a message loop, hogging a full CPU thread even when nothing is happening.)
|
| problem switching from my program to another task | 14 Jun 2006 01:58 GMT | 1 |
I am still having problems with switching thru tasks in such a way that it will work properly for me ... here is the basic information and a code snippet follows below .. My program is running and I need to switch to another (directx based)
|
| Determine the free space of a mounted volume? | 14 Jun 2006 01:08 GMT | 1 |
Anyone know how I can determine the free space of a volume that is mounted within a folder, rather than on a drive letter? The DriveInfo class seems to want to work only off drive letters. What I'm trying to do is write a simple program to generate a disk
|
| TableAdapter Insert and SCOPE_IDENTITY | 14 Jun 2006 00:54 GMT | 3 |
The generated INSERT statement in a typed dataset has an INSERT statement followed by a SELECT statement which gets (I think) the value of the autoincremented ID. Question. How do I get hold of this value ?
|
| Using anonymous method with diff signature? | 14 Jun 2006 00:35 GMT | 1 |
I'd like to have a specific method execute on the click event of a control. The common syntax is: Control1.Click += new EventHandler( Control1_Click ); void Control1_Click( object sender, EventArgs e )
|
| Deriving a sealed class | 14 Jun 2006 00:28 GMT | 8 |
Is there any way to either derive a sealed class, or access private members of a sealed class? Either that, or is there a way to run internal methods in a sealed class outside the current assembly? I don't mind if the solution is hackish, the dll i'm writing is already
|
| Combobox and Nullable Enum | 13 Jun 2006 23:57 GMT | 1 |
Is there a way to bind a nullable Enum property to a combo box? When choosing a value, and then leaving the combo box, the value reverts back to the original value. It seems the databinding doesn' accept the new value.
|
| How Dictionary<TKey,TValue> is checking keys? | 13 Jun 2006 22:19 GMT | 2 |
I have Dictionary that has custom class as its key. For that class I implemented both Equals(object) and IComparable<T>. I keep getting KeyNotFoudException. What should I do?
|
| http file upload from c# windows application | 13 Jun 2006 21:42 GMT | 1 |
I've a C# windows application (not asp.net) that needs to upload simple XML files to a URL on a website. I've tried WebClient such as WebClient Client= new WebClient();
|
| Localizable attribute | 13 Jun 2006 21:42 GMT | 3 |
After applying the "Localizable" attribute to my form using the (form) properties window in VS, I was expecting to see "[Localizable(true)]" preceding my form's class in code (added automatically by the IDE). I don't however. Can someone point out where this info is stored. ...
|
| Alternative to Dataset?? | 13 Jun 2006 21:29 GMT | 3 |
I am part of a team building a stock exchange software - Order Management system'. The current system that we have supports 200,000 orders per day. All of this data is needed in memory.Ofc ourse this system was built in
|
| Very strange exception handling problem | 13 Jun 2006 21:00 GMT | 6 |
I have a .NET solution that contains a dll project and a tester application project which, of course, invokes the dll. The dll project has exception handling in it. What's happening is that when I run the executable from within the .NET studio environment, thrown exceptions are ...
|
| Cannot convert type 'string' to 'ushort' | 13 Jun 2006 20:50 GMT | 2 |
Howdy all, in my program, I have a ushort variable and a string variable and if I try to compile it, I'm receiving this error message: "Cannot convert type 'string' to 'ushort'".
|
| csv | 13 Jun 2006 20:19 GMT | 2 |
I am writing some code to generate csv from xml. This works fine in the main, but I have a question regarding the handling of commas in the data. What is the normal way to handle this? For example, say part of the data in the xml is the string "a string , with
|
| C++ typedef equivalent in C# | 13 Jun 2006 20:14 GMT | 4 |
Is there a C++ typedef equivalent in C#? Thanks,
 Signature George
|