| Thread | Last Post | Replies |
|
| Inheritance Part 2 | 11 Feb 2007 12:44 GMT | 2 |
I have a class (base) which has 1 field (_MyField) and 1 method (DoSomething() ). This class is inherited by another class (MyClass). This class sets _MyField to a value and then invokes DoSomething. When Do Something is
|
| Inheritence | 11 Feb 2007 12:40 GMT | 5 |
I have an abstract class. I want to define a field and a few methods which reference the field defined for that abstract class. The field is defined in the abstract class but is populated in the class which inherits the class. The only way to reference the field in the abstract ...
|
| issue in property window | 11 Feb 2007 11:11 GMT | 1 |
I've created a simple class "GridLines" having 3 properties (Prop1, Prop2, and Prop3). in my custom control, i've created a property based on this class "GridLines".
|
| Is there a good way to turn regex patterns into properly-escaped c# regex patterns? | 11 Feb 2007 09:56 GMT | 3 |
... Becuase GOD am I getting sick of happily whipping out a rexex pattern, and then spending 45 minutes squinting my eyes at the c# code, trying to see if I have 4 backslashes, or only 3. Suggestions greatly appreciated,
|
| issue when linking a TypeConverter to property | 11 Feb 2007 09:06 GMT | 1 |
I 'm facing an interesting issue regarding a property and its TypeConverter. When i do not attach a TypeConverter to this property, all custom properties of my custom control are displayed in Test Container. Since i attached this TypeConverter to my property, ALL custom
|
| Masked Text Box - Net 2.0 | 11 Feb 2007 07:06 GMT | 1 |
I want to use the masked text box to do the following 1. to allow a 4 digit number to be entered - mask 0000 2. to allow currency value to be entered - mask 0,000,000.00 in example 1
|
| Automatically move file with assembly. | 10 Feb 2007 23:34 GMT | 4 |
When I reference an assembly in vs.net it will move the .dll and xml comments to the same directory as the application when it is compiled. I wan't to cause the same behavior with a license file. So if the license file is in the directory where my assembly is and vs.net moves a ...
|
| string to byte[] back to string + Compression Failed! | 10 Feb 2007 19:48 GMT | 5 |
I'm writing some code that will convert a regular string to a byte[] for compression and then beable to convert that compressed string back into original form. Conceptually I have....
|
| Office 2007 "Feel" | 10 Feb 2007 19:38 GMT | 4 |
What is needed to get the Office 2007 feel in my applications? I love the user experience in 2007 and want to implement the same in my applications. Any help is appreciated...
|
| remove chars from field in dataset | 10 Feb 2007 17:59 GMT | 2 |
How do you remove all chars such as carriage return and new line from a particular field for all records in a dataset?
|
| Programatically Select a TreeView Node | 10 Feb 2007 17:24 GMT | 3 |
I've looked around the different groups and still can't figure this out without resorting to scrappy code............ I want to programtically select and highlight a TreeView node, such that it looks the same as if a user has clicked it.
|
| Increment Large Double | 10 Feb 2007 16:56 GMT | 2 |
I have a string representing a very large number that I need to increment by 1. Ocurs that when I try to Convert.ToDouble("123456789012345678901234567890"), the string representation of my double gives: 1.2345678901234567E+29. But I need to full representation, without the ...
|
| Timer, State machine and Object oriented | 10 Feb 2007 16:14 GMT | 1 |
In my project I have a timer-driven state machine. The timer object are in the form. Update of controls like edit, label will be executed in some states. The state machine is in a seperate class, and will be called when time-out event comes. The sequence is timeout->state
|
| Passing Value back from FormWindow | 10 Feb 2007 15:41 GMT | 2 |
I have a form window which is a search of clients. In this form window are fields for searching my clients and the results are displayed in a list view. I want to return a value from the listview either by double clicking by
|
| border width from Borderstyle property | 10 Feb 2007 15:40 GMT | 2 |
How can i get the client rectangle usable based on BorderStyle value ? for example : - if BorderStyle is set to none, the client rectangle usable is the whole client rect of my component - Vertical scroll bar (for width) -
|