| Thread | Last Post | Replies |
|
| wrapping controls on a panel control ? | 29 Jul 2005 23:42 GMT | 1 |
I am adding Buttons dynamically to a panel ie for i = 1 to 50 me.panel.controls.add(mycontrol) next
|
| Display HTML on a form | 29 Jul 2005 18:56 GMT | 4 |
Hi... Is it possible to display html in a simple textbox like control? Cheers Mark
|
| How to center a page in a tab contol | 29 Jul 2005 15:10 GMT | 2 |
Maybe I'm being impaired, but I can't seem to find any way to get my tab pages to center in the DisplayRectangle of the TabControl. They always appear in the top left. There doesn't appear to be any options on the TabControl or the TabPage. I've even tried setting the page ...
|
| image paint performance in WinForms | 29 Jul 2005 14:46 GMT | 1 |
My form uses a bitmap image as a background skin, with a transparency key. A couple of small bitmap images with attached mouse-event handlers are added during Form_Load, to serve as buttons. This works fine. However, if I do more processing during Form_Load, below the section where ...
|
| How to reference ListBoxes on TabControl? | 29 Jul 2005 08:24 GMT | 2 |
I have a TabControl with a few Tabs and a CheckedListBox on each Tab (or Page). What I need to do is loop through each Checked Item on each CheckedListBox on each page of the TabControl. The problem is I can't seem to reference the CheckListBoxes
|
| in C# how do i get to total number of kilobytes of memroy total and available for the current machine? | 28 Jul 2005 19:47 GMT | 1 |
in C# how do i get to total number of kilobytes of memroy total and available for the current machine?
|
| How to increase Windows MDI Form Size ? | 28 Jul 2005 19:45 GMT | 1 |
I am creating a Windows Application for Tablet PC and using MDI Form. But I am not able to increase the Height of my MDI Form more than 780. how can I increase my MDI form Height as 1024 ? Please do help.
|
| AddHander Removal | 28 Jul 2005 19:42 GMT | 1 |
Is it possible to remove an event handler once it's installed with AddHandler? Below is the event I added and it works fine. Later in my code I want to remove it. I tried using this statement: (AddHandler mOwner.CmdFirst.Click,
|
| Classed Control Problem | 28 Jul 2005 18:51 GMT | 2 |
I'm using VB.NET 2003 I have started a new project. I have subclassed each control I plan on using in my project, text box, tab control, etc... I have a base form then I have created an inherited form from that one. On
|
| Datagrid delete | 28 Jul 2005 15:21 GMT | 1 |
Is it possible to capture datagrid delete event (winforms).
|
| Howto get the corresponding DataGridViewCell when using ContextMenuStrip for a cell ? | 28 Jul 2005 13:39 GMT | 4 |
Context ------- I have a ContextMenuStrip with a few string items. This menu is assigned to a DataGridViewColum.ContextMenuStrip Property.
|
| Deleting from a collection displayed in a PropertyGrid | 28 Jul 2005 12:38 GMT | 7 |
Hi; I have a class: class ChartColumnInfoCollection : CollectionBase , ICustomTypeDescriptor that I then display in a PropertyGrid. I implement ICustomTypeDescriptor so
|
| mouse events when the mouse is on a "child control" | 28 Jul 2005 10:49 GMT | 1 |
hi everyone; my problem: I have a userControl in this usercontrol, I have a child control (a button)
|
| Setting Text property ignores MaxLength property (TextBox) | 28 Jul 2005 09:51 GMT | 1 |
My application contains some TextBox controls. I set the MaxLength property to 10 and the user cannot enter more than 10 characters (as expected). But if I set the Text property in source code like TextBox1.Text = "More than 10 chars"
|
| DefaultValue Attribute usage with user defined Color in C# | 27 Jul 2005 15:05 GMT | 3 |
I woud like to set default value for my Color property. But, I have problem when I want set unknown color. Code: public class BitmapButton : System.Windows.Forms.Button
|