| Thread | Last Post | Replies |
|
| Creating a Form From A Non-UI Thread | 26 Jan 2005 21:43 GMT | 1 |
I have a non-UI assembly that contains a Form similar to the MSN Messenger pop-up that appears when a user comes online. I have a Timer in this assembly that on regular intervals goes and looks for new information and if it finds any, displays the Form to the user right above the ...
|
| 1 form listening for event in another form? | 26 Jan 2005 21:27 GMT | 4 |
i have 2 forms and i would like to make the 2nd form listen for a change in the first form. is there a way to do this? i'm already passing "this" to the 2nd forms constructor so it will update when it has focus again, but would like it to change as form1 changes.
|
| BeginInvoke / EndInvoke race condition | 26 Jan 2005 17:21 GMT | 3 |
Because the results to BeginInvoke occur async'ly, it stands to reason that each call of execute is actually a record on a queue, and therefor, each asyncResult must actually be a separate item on that queue. Conceptually, the nicest place to put the IAsyncResult to use
|
| Problem/Bug: poor C# windows forms accessibility for disabled? | 26 Jan 2005 15:25 GMT | 4 |
Because the blind are unable to use a mouse, keyboard navigation is key. A major difficulty is that not all windows forms controls are keyboard 'tab-able' or 'arrow-able' or have "tab order". The application is built and the next step is to create the custom JAWS
|
| Get Text from System Dialog Box | 26 Jan 2005 13:22 GMT | 6 |
How do I programatically get the text from a popup dialog box? Thanks.
|
| TabControl - Owner Drawn TabPage Dividers | 26 Jan 2005 12:57 GMT | 2 |
[ BTW I'm using C# ] I am trying to create a custom style tab control. I've managed to code it so far so that I can custom draw the TabPage dividers ( the buttons at the top of the TabControl that select the TabPage ).
|
| How do I terminate Application immediatly | 26 Jan 2005 09:30 GMT | 1 |
I wan't to run my application with argument that causes the application to do something without showing up gui. It works but in the end shows blank form and does not terminate (see code snippet).
|
| How can one select from overlapped panels in the form design View? | 26 Jan 2005 06:53 GMT | 6 |
I am building a Windows Form App that has a splitter in the client area, treeview on the left, and panels on the right. Different classes of tree nodes need different views. How can I cause the one I want to work on (say add or remove a control) to pop to the top of the z order in ...
|
| User Control binding | 25 Jan 2005 23:31 GMT | 2 |
Hi, i?ve created a user control that contains a TextBox and a Label, lets call this control CText. CText has properties like Value and Text, where Text is used to display formatted Value.
|
| How to display application build time at runtime? | 25 Jan 2005 23:10 GMT | 3 |
I am using VS.NET 2003 and C# to develop a Windows Forms application targeted at Windows XP. I would like to automatically capture the build time and date such that it can be displayed by the application, for example as part of the About form.
|
| Datagrid Scrollbar Capture | 25 Jan 2005 18:00 GMT | 3 |
How do I stop the datagrid's vscrollbar from capturing mousewheel messages? Seems they don't reach the grid's wndproc -where are they handled ? I need to use the wheel to increment values in grid cells. Thanks for your help
|
| Displaying word doc in .NET/Windows Forms | 25 Jan 2005 09:03 GMT | 1 |
Can anyone let me know if it is possible to display a Word doc in a Windows Form? If yes please let know me where I can find information on how to implement that functionality. Thanks in advance.
|
| develop component like error provider | 25 Jan 2005 09:00 GMT | 1 |
I am developing validation component, I want to be able to expose a property on every other control in the forms. Error provider and tooltip controls are examples of what I want to develop. when you add error provider to the form, every control in the form has few
|
| Enter key not being captured - not firing KeyDown | 25 Jan 2005 03:45 GMT | 3 |
I monitor the KeyDown event for an edit field on my Winform. I am capturing the Enter key (in case someone presses it it needs to act like a tab). This works most of the time, but there is some sequence happening within my code in other places that makes it so that the 'Enter' key ...
|
| WebBrowser in MDI form messes with other controls focus | 25 Jan 2005 02:27 GMT | 1 |
If I place a com "wrapped" WebBrowser control on a form - it works fine if NOT and MDI child. If it is an MDI child, then the other controls (text boxes for example) - will not take mouse input correctly, etc.
|