| Thread | Last Post | Replies |
|
| DateTimePicker.Value | 31 May 2007 22:42 GMT | 14 |
I have DateTimePicker control on a winform. When user selects a date in that control, I am getting proper value using DateTimePicker.Value. But I want to know in case user does not select any date and closes DateTimePicker control by pressing escape key. Here in this case also
|
| Drag and drop image? | 31 May 2007 21:18 GMT | 2 |
Environment: VS05, C# I'm trying to come up with a good way to create and handle drag and drop images like those that are created by the File Explorer. My first attempt was to use ImageList but this only seems to work within a single control.
|
| MDI Child Window Toolstrip does not go away | 31 May 2007 20:04 GMT | 1 |
I have an MDI child window with a toolstrip contained in a ToolStripContainer. The MDI parent also has a Toolstrip contained in another ToolStripContainer. If I drag my ToolStrip onto the parents ToolStripContainer and then close the child window, the toolstrip does
|
| Value in ListBox.Items.Add | 31 May 2007 15:22 GMT | 6 |
How do I add items in ListBox in VB.NET with the value; ListBox.Items.Add("Text") only assign the text instead of the values. Thnx
|
| sending message to parent form | 31 May 2007 13:21 GMT | 2 |
I have a usercontrol I place on different parent forms. When I double click on something on the usercontrol I want to invoke a method on those parent forms. I also need to pass an object from the user control to the parent control when calling that method.
|
| Form proprties - Is it a bug or .. ? | 31 May 2007 11:02 GMT | 1 |
Hi, I have a simple winform with a background that work fine. When I set both the RrighTtoLeft to Yes and RightToLeftLayout form proprties to True, the form background disappear. How can I solve this ? Thank You.
|
| Missing characters when reading from a file | 31 May 2007 08:11 GMT | 4 |
I have the following reader function : public static string[] fileReadAllLines(string strFileName) { ArrayList content = new ArrayList();
|
| using DateTimePicker with null entries | 31 May 2007 08:06 GMT | 2 |
I have a windows form that includes a datetimepicker control. The form gets its data from a ASP Web service. The database field that supplies the data to the DTP control can have null entries.
|
| BeginInvoke failing when executed in a form that was created in a worker thread... | 31 May 2007 05:33 GMT | 9 |
I previously posted this in the VB.General forum, but thought that this one might be a better place for it...sorry about the double post. I have created a simple form with code that looks like this:
|
| Problems with the Windows Forms Designer | 31 May 2007 04:36 GMT | 2 |
I've been working on a project in VC++.NET 2005 which contains a form with a custom control. Today when I opened the project, the designer complained: Could not find type 'VIAWorkspace.Toolbar'. Please make sure that the
|
| Cancelling Form.Load event | 31 May 2007 04:27 GMT | 2 |
I load some data from the database during the forms load event. If this load fails, then I need to bring up the error message and abort loading the form. How do I do this in .NET 2.0? There doesn't seem to be a way of cancelling the forms construction from within the load event. ...
|
| No more type ahead searching for treenodes in VS 2005? | 30 May 2007 15:13 GMT | 1 |
In Visual Studio 2003 one of the default treeview behaviors I relied on was the ability to do type ahead searching for treenodes. Like if my treeview had nodes for the fifty states, typing "ark" would make the treeview select the Arkansas node. But, now that I've upgraded my
|
| Controls Hide/Show display performance | 30 May 2007 14:00 GMT | 4 |
I have a quite complex GUI in C#, where i save space by using many Panels, Pictures which hosts controls. When the user needs a function, i hide the "olds" panel, pictures.. then show the necessary ones.
|
| Dbl-Click to load a file when app is already running | 30 May 2007 04:31 GMT | 3 |
I'm using the GetCommandLineArgs (VB.Net 2005) in my form load event GetOutsideFile(Environment.GetCommandLineArgs()) so that, when I have files associated with my app, and double click on a file, they will run the app and load the file in it.
|
| Display html page in winform(.NET 2.0) | 30 May 2007 03:47 GMT | 1 |
I have some html codes, and I need to present the rendered html page to user in winform program. I cannot find a helpful control in .NET framework. How to do that in .NET 2.0? Thank you
|