| Thread | Last Post | Replies |
|
| Serialize/DeSerialize Generics List | 17 Oct 2006 18:42 GMT | 2 |
I have a Generics List in a PropertyGrid I am able to Serialize it to XML but when I try to deserialize back to the class of the PropertyGrid The Constructor doesn't seem to fire to reload the saved settings
|
| How to pass data from a class data member to that class' display method? | 17 Oct 2006 18:30 GMT | 3 |
I've got a class with a private DataSet member, and a void display() method. The display() method is *supposed* to take the DataSet for the class (instance), new up a predefined for which has a DataGrid, slap the
|
| form designer | 17 Oct 2006 17:54 GMT | 6 |
I need a help. I have form inherited from other form. The base form implementation is placed in other assembly. I try to open my inherited form in designer but visual studio throws an exception. My question is: "how can I debug visual studio form designer?" As I remember in ...
|
| Switch statement alternative? | 17 Oct 2006 17:49 GMT | 5 |
Hey all, I need some direction help. I have a switch case statement that is seemingly my only option right now, but its too large and not easy to maintain the code. Here goes... I have part descriptions (ie. 3/8" X ____" NYLON ALL-THREAD RODS...or
|
| Queue object with strange behaviour?? | 17 Oct 2006 17:15 GMT | 7 |
Here is another question we have been meaning to post for a long time. My colleague is literally pulling chunks of hair out of his head right now. We have a logging class. This class is mutlithreaded (as required by our boss). So when we tell the class to log something, it puts ...
|
| How to get inherited class type/name inside static base class meth | 17 Oct 2006 16:58 GMT | 5 |
I would like to have a static method on a base class that executes some action (for example retrieves the row count) on a table whose name is the same of the inherited class name. For example:
|
| Maximum Size of Byte Array | 17 Oct 2006 16:48 GMT | 23 |
I'm getting an OutOfMemoryException when I initialize a byte array in C# like this: Byte[] test = new Byte[420000000]; I'm using ASP.NET 2.0. In ASP.Net 1.1 it works fine. So what am I doing
|
| ListView and horizontal scrollbar | 17 Oct 2006 16:38 GMT | 1 |
I have a ListView with one column and no header. How to display the horizontal scrollbar if one of the items is too long? Scrolable property is set to true. Thanks,
|
| Figure out when mouse cursor enters/leaves form | 17 Oct 2006 16:23 GMT | 4 |
I have tried this using the MouseEnter/MouseLeave events. However these events do not really refer to the rectangular shape of the form, but the client area (form area minus children areas). This means that if the mouse is currently inside the form's client area and it enters a
|
| Propertygird and multiline items | 17 Oct 2006 16:17 GMT | 2 |
Is there a way to display text in Propertygrid that spreads in to multiple lines? I don´t want to make editor that opens a new dialog when user is editing value - i would like to have normal Textbox with several lines. I know i
|
| Updating an object value in a grid | 17 Oct 2006 16:13 GMT | 2 |
I have a DataTable and in one of the columns, I'm storing an object. When certain properties of that object change, I want the DataTable to trigger an update in the grid (via the CurrencyManager). Is that possible without setting the Row/Col to a new instance of the
|
| How to populate a combobox with an ArrayList containing 1 dimensional array of strings? | 17 Oct 2006 16:12 GMT | 4 |
All the examples I've seen showing how to populate a combobox using the DataSource property and an ArrayList show the ArrayList object containing objects with at least two properties. I want to create an ArrayList that contains only rows of string data and want to assign
|
| How Math.Cos & Math.Sin is implemented? | 17 Oct 2006 16:04 GMT | 15 |
I am writing a program that will take a lot of Math.Cos & Math.Sin operation. I am afraid this will be source of performance impact. Anybody knows how Math.cos & Math.Sin is implemented? I suppose it just retrieving a huge pre-computed table, it might be
|
| Migrating from Visual Studio 2003 to 2005 | 17 Oct 2006 15:57 GMT | 3 |
I just converted my C#/C++ 2003 solution to 2005. The conversion of all 31 projects worked fine, but I can't start it now. It tells me: "Can't start 'xxx.exe' or one of its depencies. The module was expected to contain an assembly manifest."
|
| IComparable and multiple sorting | 17 Oct 2006 15:55 GMT | 1 |
i dot not manage to write the code to sort a array on multiple columns. ArrayList people = new ArrayList(); people.Add(new Person("John", "Doe", 76)); people.Add(new Person("Matt", "Dire", 80));
|