| Thread | Last Post | Replies |
|
| ToolStripContainer and MDI App | 02 Aug 2005 22:16 GMT | 1 |
I'am trying to write some application under .NET Visual Studio 2005 Beta. My idea is as follows: - main MDI Parent form, with some button-panels, allowing redocking then (this pannels with uttons) to top, left and wright of the main form.
|
| Images in Menus | 02 Aug 2005 20:27 GMT | 1 |
This is quite a genuine and a usual question. I would like to bring images/icons in my windows form menus (both window menus as well as in context sensitive menus). Any light thrown is highly appreciated. Thanks in advance.
|
| for Loop | 02 Aug 2005 18:10 GMT | 2 |
Is there is a way to loop through a time variable? For instance we can loop using integers as follow: for(int i=0; i<11; i++) {
|
| DLL's & reusable code | 02 Aug 2005 16:07 GMT | 3 |
I am pretty new to VB.Net but I felt like I was making pretty good progress until I branched out into trying to reuse existing code! I created a "solution" with one project. It has a form with a datagrid that I'm using to maintain a data file (table) and I thought it would be
|
| Loading combobox with time | 02 Aug 2005 15:29 GMT | 2 |
I would like to load time in a dropdown similar to the outlook calendar appointment time dropdown. Here is how I do this: comboboxTimer.Items.Add( (object) "12:00 AM" );
|
| Binding two comboboxes to the same source | 02 Aug 2005 14:45 GMT | 1 |
I have 2 combos on a form which require to have the same set of values in the dropdown, but bind to different values in the main DataTable. So I set the datasources thus: cboOldProvider.ComboBoxControl.DataSource = ds.ServiceProviders ;
|
| Drag & Drop - Performing "Copy" by default | 02 Aug 2005 12:39 GMT | 7 |
I have (two) tree view controls that can work in either "read-only" or "normal" mode. In "normal mode", items can be moved between the trees using drag & drop. When a tree is in "read only" mode, items can only be copied from it, not moved.
|
| Monitor Paste events from the Clipboard | 02 Aug 2005 09:02 GMT | 2 |
I've been able to monitor copy/cut events using PInvoke and User32 SetClipboardViewer, but I need to capture Paste events as well. If anyone has a way of doing this, please let me know. Regards,
|
| How to call base buttons onclick event | 02 Aug 2005 04:48 GMT | 6 |
Hello. I have a form which derives from a System.Windows.Forms.Form. On the derived form, I would like to override a button's onclick event, and perform some validation on the derived form, then finally call the base class' onclick event.
|
| Paint DC of Hidden Control using Managed Code? | 01 Aug 2005 18:32 GMT | 6 |
How do I paint the DC of a hidden control using only managed code? There was a post under microsoft.public.dotnet.framework.windowsforms called "Capturing image of a hidden control" and the person responding suggested using an interop call to SendMessage in User32.dll to ...
|
| A Realtime Charting Control eg PerfMon | 01 Aug 2005 17:37 GMT | 2 |
Can anyone tell me if they have come accross a control that is able to display a line graph in real time such as the one that is displayed by the performance monitor application included in windows. I know of quite a few charting components but I'm not sure if they would
|
| Editing object in an ArrayList using the PropertyGrid | 01 Aug 2005 16:47 GMT | 1 |
I have a class that I use a PropertyGrid to edit properties in. I have one property in the class that is an ArrayList. The PropertyGrid understands the ArrayList(displays Collection on the righthand side) and lets me edit it(click on the '...' button and an object collection
|
| using splitter | 01 Aug 2005 15:55 GMT | 2 |
Something very weird, the splitter control doesn't work. I placed two controls, for example panels, one docked to left and the second docked to fill and added a splitter. When the form is displayed the splitter is enabled, the cursor icon changes when hovered, but the splitter ...
|
| Add treeview node "manually" as string with PathSeparator as divider in the string | 01 Aug 2005 09:15 GMT | 2 |
Is it possible to add a treenode to a treeview by using a string that has the PathSeparator as divider in the string? hereis a psedocode (maybe stupid format or coding but I hope you understand what I mean)
|