| Thread | Last Post | Replies |
|
| Bug in Framework: Activate Event | 04 Aug 2005 17:26 GMT | 1 |
I've noticed an error in the Activate event of .NET Framework 1.0/1.1: When a .NET program starts but the window is opened behind other windows and thus is NOT activated, the Activate event still is fired. So the program can not recognize if it is active or not.
|
| Application.Run | 04 Aug 2005 14:21 GMT | 1 |
I am developing a windows form with a login screen.Once a user succesfully logs in,I want to close the login screen and run the main application. I dont want to use show dialog box.I would like to use application.run for both the forms.
|
| Application crashes using Save File Dialog from a Mdi Child | 04 Aug 2005 12:57 GMT | 2 |
I have an application with several Mdi child forms. In one child, I have an option to export records in a DataGrid to a text file using the SaveFileDialog to get the file and path. When exporting, the opening and saving of the SaveFileDialog works fine.
|
| Multiple Datagrids to scroll through | 04 Aug 2005 08:42 GMT | 4 |
Hello. In SQL Server Query Analyzer, if I type in, say, 2 select queries, it returns 2 datagrids of results, with a scrollbar on the right to scroll between the 2 (or more) datagrids. I wanted to implement this in a vb.net application I am writing. Does anyone know how this is ...
|
| Changing ComboBox State from within SelectedIndexChanged | 04 Aug 2005 08:12 GMT | 2 |
I often have a situation where within the SelecteIndexChanged event of a ComboBox, I want to change the index again. For example, a changed index triggers an action that can fail, in which case I want to return the index of the combobox to its previous value. However, doing this ...
|
| Close Process | 04 Aug 2005 05:07 GMT | 2 |
My application has 3 processes. Now if there occurs an exception say 1 divided by 0 which is not handeled at process level and System Dialog indicating the exception comes up. If user clicks on abort button, how can I close other two processes ? i.e. how do I capture Abort event ...
|
| Forcing Listbox items to redraw - HOW? | 03 Aug 2005 20:59 GMT | 1 |
Searching google groups for 'listbox items redraw' yields lots of people with the same problem, but little in the way of solutions. The problem: A ListBox's Items collection can contain arbitrary objects, which is wonderful, and the listbox will decide what to
|
| Open form | 03 Aug 2005 19:09 GMT | 1 |
How do I open a winform from another winform?
|
| Making main form initially hidden...? | 03 Aug 2005 09:53 GMT | 2 |
Today is my first day at programming using .NET so please excuse if my question seems trivial. (All previous coding done with C++/MFC) My aim is to create an application (consisting of a single form) which, when
|
| More questions about client areas | 03 Aug 2005 09:12 GMT | 1 |
Similar situation to other posts, but I hope I can get a better answer to mine. I have a control derived from System.Windows.Forms.ContainerControl. I do all my own painting. Consequently, the area that I wish to allow users to place controls is smaller and has a different ...
|
| CultureInfo, both '.' and ',' as decimal separator? | 03 Aug 2005 09:06 GMT | 1 |
Does anyone know if there is a way to modify the Thread.CurrentThread.CurrentUICulture or Thread.CurrentThread.CurrentCulture to make parsing of strings to numbers (gui input) work with both '.' and ',' as a decimal separator? And when numbers parsed to strings just one of the
|
| Relative Position of Control in Scrollable form | 03 Aug 2005 07:24 GMT | 1 |
I am looking to retrieve the relative position of a control to it's container form. The problem is that the form itself is scrollable and when the user has scrolled to the bottom of the form the location of the control appears to be relative to the top left corner of the
|
| Determine source of text control of a combobox | 03 Aug 2005 07:19 GMT | 1 |
I need to determine if the text contained in the text portion of a combobox was a result ofa user typing it in, or from selecting an item from the drop down list. What's the best way to go about this?
|
| icons on ContextMenu for new NotifyIcon() | 03 Aug 2005 06:40 GMT | 2 |
I have read and tried the code that generates icons for ContextMenu items for objects on Windows Forms. But I have not been able to get the code to run properly for a ContextMenu over a NotifyIcon object. I have seen Win32 code generating icons for system tray icon context menus
|
| Help with Multi threading | 02 Aug 2005 22:58 GMT | 1 |
Hello to all, I have a need to make a progress bar respond while a query is processing. I looked into the multi threading and I've had mixed results. I've tried a new thread with no success and I've tried a delegate thread
|