| Thread | Last Post | Replies |
|
| UIP and existing Forms | 19 Aug 2005 11:17 GMT | 1 |
Is it possible to use the UIP block with an existing form not derived from WindowsFormView? For example, can I place controls derived from WindowsFormControlView onto a custom dialog and have them managed by the UIProcess classes without having
|
| DataGrid multi select | 19 Aug 2005 10:59 GMT | 3 |
I have a datagrid, when I hold shift and navigate through the grid I am able to multi select rows. How can I prevent multi selecting rows?
 Signature Thanks
|
| Background shows while switching between forms | 19 Aug 2005 08:14 GMT | 5 |
I have an multi-form application, which uses owner drawn buttons that use bitmaps. I switch between forms using: public void ActivateForm(FormBase form) {
|
| How to make <ENTER> behave like <TAB>? | 18 Aug 2005 22:47 GMT | 1 |
How do I make the <ENTER> key behave like the <TAB> key to move from one control to the next in a form? I have looked in many books but cant find an answer to this. Thank you for any help.
|
| Hide Contextmenu in treeview | 18 Aug 2005 20:58 GMT | 4 |
I have a treeview with which I want to use a context menu for certain nodes to fill a memo property of the node. So when I add the nodes I set a property 'ItemNode' to either true or false.
|
| Problem with .net framework 1.1 german language pack | 18 Aug 2005 15:15 GMT | 2 |
I use the 'System.Windows.Forms.KeysConverter.ConvertToString' method to convert keystrokes to german text and display them into a textbox. For a lot of keys it works without any problems e.g. Ctrl (Strg), Shift (Umschalt), Alt (Alt), o PgUp (Bild-Auf), PgDown
|
| CheckedListBox selection | 18 Aug 2005 14:52 GMT | 1 |
i have a CheckedListBox with MANY MANY entries. After a click on a button all entries in that checkedListBox shouldn't be selected. How can I make this? And if I add a entry with an object of a selfcreated class ... how can I
|
| Bug in DateTimePicker | 18 Aug 2005 14:41 GMT | 1 |
I have made my ovn version of DateTimePicker. My control is inherit from DateTimePicker If i add the following code to the control: In new I have added:
|
| Need Help | 18 Aug 2005 12:04 GMT | 2 |
This is the description of my problems. I used three ways to develop irregular-shaped WinForms : 1. Firstly I set the form's FormBorderStyle property to None. I set the form's BackColor property to Color.Black and the
|
| TextBox - special keys disabled? | 18 Aug 2005 09:38 GMT | 1 |
i've got a strange problem with the textboxes in my vb.net application: some keyboard operations seem to be ignored. that means that nothing happens when i press the delete button. the user can fill in the textboxes with ascii characters, backspace for example also works. but copy ...
|
| Capturing mouse, key events | 18 Aug 2005 02:50 GMT | 22 |
I'm trying to modify a C# sample app (Scribble) such that the user can draw w/o holding the mouse button down -- first mouse click turns on drawing, moving the mouse draws, and the second mouse click turns it off.
|
| Is there a way to do zip and unzip in vb.net? | 17 Aug 2005 22:24 GMT | 1 |
I need to unzip a .zip file in a vb.net app and then zip up some other files. Anyone got any suggestions on how to get started? Does vb.net have something built in or so I need a component or something? Thanks.
|
| hot to create cursors in c# | 17 Aug 2005 20:45 GMT | 1 |
i want to create a cursor in c#. Basically i want to draw a rectangle whose width changes dynamically. So i thought of creating a bitmap object of given width and height and then get a graphics obejct out of it and fill the rectangle with a specific color. So i will get an image ...
|
| Form Instance | 17 Aug 2005 20:00 GMT | 5 |
Is it possible to check if an instance of a form exists? TIA.
|
| RichTextBox how to catch CUT and PASTE? | 17 Aug 2005 17:40 GMT | 3 |
I have a problem with the RichTextBox Control. I need to catch CUT and PASTE (on ctrl+X and Ctrl+V). So I subclassed RichTextBox, and overrode WndProc looking for WM_PASTE and WM_CUT (0x0302 and 0x0300).
|