| Thread | Last Post | Replies |
|
| Bound Object Frame | 20 Feb 2006 02:20 GMT | 1 |
Access has the Bound Object Frame control which allows you to support a very neat drag and drop container into which almost any file can be dropped including pictures in the clipboard. Does Windows Forms have anything similar?
|
| howto create filter UI like Excel with DataGridView | 18 Feb 2006 18:52 GMT | 1 |
I'd like to filter the rows in a DataGridView using a technique like that in Excel where the first row (or the header cells) contain controls that the user can fill in/select to specify their filter. For example, have a combobox that contains distinct items from that column
|
| Load event called in Design mode | 17 Feb 2006 15:00 GMT | 2 |
Here is the situation: I have a base class (BaseUserControl) which inherits from UserControl. Now I created a bunch of controls that inherit from this base class and that I add to different Forms. The load event is being called in design mode. And i know this is by
|
| Treeview Vb .net question (newbie) | 17 Feb 2006 14:02 GMT | 1 |
I got A node that is selected, but went the treeview loose focus, It become Grey but not enough to see that it is still selected I would like it to remain selectedDarkBlue as it was when the tree has
|
| Get SelectedText from WebBrowser control | 17 Feb 2006 08:11 GMT | 3 |
How would I go about getting the selected text out of a WebBrowser control? I have searched the net and found some code which uses the mshtml interface but I couldn't cast my webBrowser1.Document to IHTMLDocument2 using Visual Studio 2005.
|
| [repost] NotifyIcon.ShowBalloonTip under Win2K? | 17 Feb 2006 08:05 GMT | 1 |
It seems that the behavior of NotifyIcon.ShowBalloonTip is different under XP and Windows 2000. If I call it twice in a row on XP the second balloon replaces the first (as the MSDN documentation explains) but on Win2K it creates a new balloon over top of the first, such that ...
|
| custom controls for ToolstripContainer? | 17 Feb 2006 03:33 GMT | 11 |
Is it possible to create my own custom control that can be placed inside a ToolStripContainer? What I'd really like to do is to place a property grid inside a ToolStripPanel but this is not supported; I may only place it in the central ToolStripContentPanel. I'm wondering if I ...
|
| TextBox TextChanged event. | 17 Feb 2006 02:50 GMT | 4 |
I need to change the text of my textbox within TextChanged event handler. The problem is that the textbox keeps triggering the TextChanged event recursively. Is there any way to prevent the text changed event when I change the text of
|
| How can I use ToolStripContainer in MDI style application? | 16 Feb 2006 22:37 GMT | 1 |
I am playing with VS_2005. When I place ToolStripContainer to MDIParent form it is always shown over all MDIChild forms. Is there any workaround for this?
|
| Improving Control Painting | 15 Feb 2006 20:44 GMT | 5 |
(sorry for the previous message...hit the wrong keys) Hi all, I've got some performance issuses with the GDI+ drawing of my Controls. I've got a panel in which I'm creating quite a few objects (50-100) that
|
| ReadOnly RichTextBox in .net 2 | 15 Feb 2006 06:56 GMT | 3 |
I have created a class that inherits from RichTextBox. I noticed that on version 2 of .net if the property ReadOnly is set on the control, then the BackColor is set to gray. Since I need the control to be read only but don't want to gray it, I am specifying the BackColor as ...
|
| Toolbars lose focus, require two clicks to regain focus | 14 Feb 2006 23:53 GMT | 2 |
When I run a winform app (.NET 2.0) with some toolstrips on it, I find that if the winform loses focus, and I rteturn to the winform, I need to click on the tool button twice in order for it to fire the click event. The first click seems to give the winform focus and the second
|
| Custom Control toolbox problem | 14 Feb 2006 19:23 GMT | 1 |
I've created a Custom Control which looks like this: [Designer(typeof(myNamespace.FixedSizeControlDesigner), typeof(IDesigner))] public class MyControl : UserControl {
|
| How to make DataGridView lines look like compiler error list grid in visual studio 2005 IDE | 14 Feb 2006 02:49 GMT | 3 |
|
| Problem with blocking WM_PAINT message in UserControl | 13 Feb 2006 19:52 GMT | 3 |
I have a small problem: I would like to block the WM_PAINT message in a user control. However, when I override WndProc, all child controls that are placed on the form together with this control don't get painted either. I thought ONLY the message for this control inside the
|