| Thread | Last Post | Replies |
|
| copy SortedList | 11 Oct 2006 06:07 GMT | 4 |
I have a SortedList defined as... SortedList<CUser, CUser> userList = new SortedList<CUser, CUser>(); ...and which to copy it to another sorted list
|
| MSBuild: Project level tasks from solution | 11 Oct 2006 05:16 GMT | 3 |
I trying to master msBuild but have a problem. I have a solution that I wish to build using msbuild but want to override BeforeBuild/AfterBuild targets for each of the projects. I trying to avoid modifying the common.targets etc and the individual project .sln files and just do ...
|
| Need advice with huge TreeView performance | 11 Oct 2006 04:24 GMT | 7 |
I am generating a very large tree list in my program and while it's performance is great once loaded it takes a really long time to load. I create a root TreeNode "offline" and go through the process of creating building up the tree from there. Only when I am done do I go
|
| DataGridBoolColumn | 11 Oct 2006 04:05 GMT | 1 |
Is there a way to change the apparance of DataGridBoolColumn, e.g. I'd like the checkbox has no square box when it is in read only mode? Thanks a lot!
|
| Why can't I add these modules? | 11 Oct 2006 03:48 GMT | 1 |
I was trying to follow instructions to create a multifile assembly. My project had two simple classes, MathLib and StringLib with a single method each. The instructions told me to compile each clase into modules using the
|
| Indenting XML output? | 11 Oct 2006 02:28 GMT | 3 |
I'm having a problem getting XML output properly formatted. specifically, line breaks and indentation are missing, even though I'm using an XmlTextWriter with Formatting = Formatting.Indented. Here is the code that's generating the problem:
|
| Easy Question using switch / case | 11 Oct 2006 02:18 GMT | 6 |
how would i write the following in switch case statement: if (x < 40) y = 0; else if (x < 65)
|
| nant - what is the right way to reference? | 11 Oct 2006 02:12 GMT | 2 |
i've instaled nant and nunit but <csc target="exe" output="bin/Simple.exe" debug="${debug}"> <references>
|
| Asynchronous Socket Problem with TCPIP | 10 Oct 2006 23:55 GMT | 1 |
Lets see, for arguements sake lets just say that I have a server, which site waiting to receive connections, it then has an array of sockets that are connected to it. It's receiving all of this asynchronously. Now, this is my problem, I
|
| Deserializing - Can this be done? | 10 Oct 2006 23:11 GMT | 3 |
I want to be able to deserialize data contained within a XML file to a data structure. This I know how to do. However, what I want to be able to do is the following: 1. Serialize multiple "C# classes" into a single XML file. One at a time.
|
| creating a base exception for a windows application | 10 Oct 2006 22:56 GMT | 3 |
I am writing a windows C# application, and I want to ensure that all exceptions, handled or otherwise, are logged to the local event log. I can do this for the handled exceptions, but I am not sure how to override (?) the system exception such that un-handled exceptions are
|
| Problem with checkboxes | 10 Oct 2006 22:34 GMT | 1 |
I know this probably isn't the best way to code this but I have to take in a group of members for a company, generate a web page with their names, what measures they meet and then place a check box for a reminder by the measures. I have created the check boxes by adding the
|
| Multiple Forms Hiding and closing | 10 Oct 2006 21:19 GMT | 2 |
I have an app that requires 4 child forms each created on a separate thread. Each form holds a 3rd Party Phone answering control. The control will only answer the phone if the form has been displayed. Instantiating the form is not enough.
|
| OOP and instanstiation question | 10 Oct 2006 21:15 GMT | 3 |
I have a class Person that includes several properties (i.e. Name, ID) and a method storeData() that stores these same values to a database. What's the correct method of instantiating this class when another method in another class is storing data to the properties and calling ...
|
| Thread blocking diagnosis | 10 Oct 2006 21:00 GMT | 3 |
I have an app that has a 3rd party phone answering control (4 of ) (interfacing with dialogic 4 line card) attached to the main form. each control raises an event when its Dialogic line detects ring tone. I use the ring detect event handler to create a new thread which is given a
|