| Thread | Last Post | Replies |
|
| Overdrawing the DateTimePicker | 12 Jan 2006 22:51 GMT | 1 |
I've managed to insert an icon into both the TextBox and the Combobox controls. However, the DateTimePicker has no DrawMode property, nor can I directly access the handle of the Textbox inside it (as I can with a combobox).
|
| Combo box in toolbar? ...or another approach? | 12 Jan 2006 00:34 GMT | 1 |
I'm implementing in C# a simple drafting/graphics application. I want to provide the user with controls for selecting linestyles, text fonts, symbols, etc etc. I imagine that I want these to look like the selectors in Word for font,
|
| This should be pretty simple (but not for me... in .net) | 11 Jan 2006 17:07 GMT | 1 |
All, I have recently begun some "exploratory" development work to ascertain how much effort is going to be required to migrate our existing code base (Visual Studio 6.0 SP6) to .net 2003.
|
| TextBox Controls - canceling right mouse click | 11 Jan 2006 13:06 GMT | 5 |
I created a new Windows Control Library, which is inherited TextBox (public class CMaskControl : System.Windows.Forms.TextBox). When user right clicks by mouse on the textbox or press key context menu on keyboard, he receives context menu (he can paste, copy, delete
|
| Is this a candidate for Reflection? | 11 Jan 2006 01:29 GMT | 3 |
I am working on a custom O/R Mapping software. Currently I am doing this: foreach(DataRow row in table.Rows) MyList.Add(new BusinessObject(row)); But I really don't want to add objects of type "BusinessObject" to the
|
| Datagrid Windows Control | 10 Jan 2006 21:56 GMT | 1 |
I would like to hide a column in my datagrid when the data source get assigned. e.g. below populated the datagrid da.Fill(ds, "Table1")
|
| icons disappers from toolbar buttons in runtime | 10 Jan 2006 17:37 GMT | 1 |
i have a toolbar that uses icons from image list to show on it's buttons. while i can see the icons on the buttons in design mode, in runtime the buttons are just grey - no icon is shown, the buttons are enabled and fires events on click, also tooltip is shown. It worked for me ...
|
| Stop a RichTextBox from scrolling when it has focus | 09 Jan 2006 16:30 GMT | 2 |
When a RichTextBox control doesn't have focus, it DOES NOT scroll to the last line that is added; however, if it does have focus, it WILL scroll to the last line added. I want to stop and start this behavior at will. When I stop the behavior, this will give users a chance to ...
|
| Image editor | 09 Jan 2006 05:53 GMT | 2 |
Does anybody know where can I find somewhere on internet, source code of appliacation similar with Ms Paint, or something easy for drawing. Thanks a lot.
|
| Sourcecode editor control | 09 Jan 2006 03:04 GMT | 3 |
I am looking for a text editor control that is suitable for editing source code, preferably written in C#, something like the code editor in Visual Studio: with line numbers, outlining, applying color to parts of the text without having to change the selection like in the ...
|
| Tab control workaround? | 09 Jan 2006 01:09 GMT | 2 |
The VS 2005 tab control apparently has a rather nasty bug: If you have more than one tab page, controls on pages other than the first page can't be configured in code until after a page has been brought to the front. I have a tab control with two pages; each one has a ...
|
| Display data from richtexbox control | 08 Jan 2006 23:26 GMT | 6 |
The data (Richtextbox) has format like indentation, Butted list, Font Style and others. Is Windows.Forms.Label control be able to display the data with ints format intact? How do I do that, the usual way of using its Text property and
|
| System.Windows.Forms.Control: Shouldn't it be abstract? | 07 Jan 2006 06:52 GMT | 3 |
Can anyone explain me why the control base class, System.Windows.Forms.Control, isn't declared as abstract? When could it be usefull or even necessary to create an instance of System.Windows.Forms.Control?
|
| .NET 2.0 UserControl hide window problem | 06 Jan 2006 06:23 GMT | 3 |
I have a UserControl, created in VB.NET, which is displayed in a panel in an unmanaged MFC application. The control is very simple. Just a multi-line text box dropped on the user control. The MFC application sometimes will hide the control.
|
| How to prevent roundiing in NumericUpDown | 05 Jan 2006 03:45 GMT | 1 |
I am using NumericUpDown control. I have set Decimal places property to 3. Problem is that when I programatically assign it a value which has 4 digits after decimal point ,
|