| Thread | Last Post | Replies |
|
| How the property grid displays an array of values | 15 Apr 2005 16:37 GMT | 1 |
I want the property grid to display a list of values, say MyParameters { private ArrayList Surveys;
|
| Main Form loses focus | 15 Apr 2005 16:18 GMT | 1 |
I am developing a windows form application in VB.Net that has a splash screen in the begining before the application loads the main form. To display splash screen i am loading splash form in the "main" sub in a seperate thread that periodically checks a static property
|
| How do form paint itself ? | 15 Apr 2005 16:15 GMT | 4 |
I wrote a very simple windows form application. In my form I put a button. Then I wire a function to the Paint event of the form. In that function, I do nothing. I start the application from VS.Net and set a breakpoint in the function. Everytime I hide the form and then unhide ...
|
| Multiple dynamic MenuItems with a single Clic Event Handler | 15 Apr 2005 02:27 GMT | 8 |
I need to create a menu dynamically where the number of items is variable but I don't know how to add a single click event handler with a way to distinguish which item caused the click event: foreach (MyType obj in ObjectTypes)
|
| Minimize (and Not Maximize) options for borderless form | 15 Apr 2005 01:19 GMT | 4 |
I have a borderless WIndows Form. I've found that with a borderless form the ContextMenu for the program button in the task-bar is turned off. Upon advice from this list I can turn it back on by overriding the CreateParams property like so:
|
| Asynchronous Web Service Progress | 14 Apr 2005 21:32 GMT | 2 |
Is there anyway to track the progress of a Async Web Service Call (BeginXXX /EndXXX type)? In my long running web service, I want to flag certain stages of completion, is there a way to relay this data back to the calling function?
|
| Checking for logout when closing a form? | 14 Apr 2005 19:23 GMT | 6 |
I've written an app that minimises to the system tray when the 'close' button is clicked (I'm setting the Cancel flag in my formname_Closing event handler). This works fine until you try to logout of Windows - the logout is unable to stop my app! Is there any way to check whether ...
|
| Is there a way to get the listview header background color? | 14 Apr 2005 17:47 GMT | 2 |
I am looking for a way to get the background color of a listview header (when in Details view) I have found a couple various threads on how to change the background color, but I have yet to find out how to GET the background color. 99%
|
| Drag drop between objects of same type? | 14 Apr 2005 17:12 GMT | 3 |
Hi ppl, I have a situation where a user can add a user control to another control (like a scratchpad) at runtime. I've done this by way of a context menu. The user selects to add a new item from the context menu and then clicks on the scratchpad where they want to create the new ...
|
| Treeview Flickering | 14 Apr 2005 16:22 GMT | 6 |
My treeview is flickering whenever I change the text property of a node. I was searching the newsgroups on how to resolve this problem, and found the following solution: Inherited from a treeview and added the following code to its constructor:
|
| Stopping an application from closing | 14 Apr 2005 10:38 GMT | 1 |
I want to stop my app from closing, unless the user specifically wants it to, I use this code: private void MainForm_Closing(object sender, system.ComponentModel.CancelEventArgs e)
|
| When will Microsoft fix the tab-page reordering bug??? | 14 Apr 2005 07:56 GMT | 4 |
The designer keeps spuriously rearranging the tabs in the TabControls. This is highly annoying! I checked Google and it seems that there are reports since VS 2002. Isn't it time to provide a fix???
|
| ComboBox unique ValueMember and non-unique DisplayMember | 14 Apr 2005 05:46 GMT | 10 |
I have a ComboBox bound to a DataTable. For example: ID Name 1 John 2 John
|
| Where can I find the IE 5.01? | 14 Apr 2005 03:14 GMT | 2 |
Guys, I have a e-custom program which require Windows 98& IE 5.0 environment, and it is forbidden by this program to be upgraded to IE5.5 or higher. At the same time, I have a .net based program requiring that the IE must be
|
| Open Form | 13 Apr 2005 17:09 GMT | 1 |
Is it possible to show a form by using its name property in VB.NET. I am thinking about getting the name of the windows form from database and then show the form. just like DoCmd.OpenForm "nameof form" in MSaccess.. Thanks in advance
|