| Thread | Last Post | Replies |
|
| Modeless Popup Window - Controls have no functionality | 28 Oct 2005 18:44 GMT | 1 |
I'm having a bit of an issue with a popup toast window. I have an application that starts up as a component application. I'm doing this because I need it to run in the system tray for most of the time. And of course, if you double click the icon, a main form
|
| Threading Question | 28 Oct 2005 14:23 GMT | 1 |
I have 2 (simple) questions about threading. 1)How can I get a notifiication that a thread has completed its work? 2)When I try to abort a thread thats currently suspended I get the following error:
|
| erase DG | 28 Oct 2005 14:10 GMT | 1 |
How can I erase the content o a Data Grid so the next content will be a fresh one, instead of ADDING to the last line in the datagrid...? Thank you
|
| How get the name of a MenuItem | 28 Oct 2005 13:45 GMT | 2 |
I use the same routine to handle the click event of any MenuItem I want to get the name of the selected menu before do something... Select Case CType(sender, MenuItem).Name Case "A"
|
| Timing | 28 Oct 2005 13:02 GMT | 1 |
What's a good way to time how long a specific section of code takes (in milliseconds or even smaller units). Is there any way to get both elapsed time and cpu time ?
|
| Guidance on M-VC with User Controls | 28 Oct 2005 12:48 GMT | 1 |
I was fine with my typical event driven structure of my app (IE: User Clicks "Delete Item" button, the event fetches the Business Object from the selected TreeNode's Tag property and calls the Business Object's Delete() method. I would then update the tree somehow to reflect the ...
|
| ComboBox SelectedIndexChanged vs. SelectedValueChanged | 28 Oct 2005 12:37 GMT | 1 |
I'm sure I'm missing something, but what's the difference between these two events? Both of them always fire one after the other and I can't find a case where one would fire and not the other. I tried loading a ComboBox with a list of items, some of which had the same
|
| Custom Brushes | 28 Oct 2005 10:21 GMT | 4 |
Can anyone give me some hints on how to create a custom brush deriving from the Brush class? Thanks Cristian Mori
|
| Exception Handling | 28 Oct 2005 10:05 GMT | 5 |
Is there a way to implement an excpetion handling for an application domain? I am developing a windows application and i want to catch any unhandled exceptions. I want to implement something similar to Application_Error event in ASP.NET that is used to catch all the ...
|
| Setting ListViewItem check state to indeterminate check | 28 Oct 2005 09:23 GMT | 3 |
Wondering if anyone can help me here. I want to be able to progmatically set an item check state in a list view to the indeterminate (i.e. grayed in Windows Classic/Filled Square with XP theme) state.
|
| c# - listBox onScroll event | 28 Oct 2005 04:03 GMT | 2 |
Can anyone tell me how to fire and use a listBox onScroll event. The language I am using is C# in a windows forms application thanks
|
| DataGridView - Use Gradiant Brush to format a cell | 27 Oct 2005 23:04 GMT | 2 |
How could I format the background of a DataGridView cell with a gradiant brush?
|
| Object Reference not set on DataSet value change? | 27 Oct 2005 19:08 GMT | 1 |
I've just installed the .NET Framework 1.1 SP1 and suddenly things that used to work are giving me problems. Specifically, I have a grid (not an MS DataGrid but one from a third-party) which is bound to a DataView. One of the columns is boolean and the grid displays checkboxes, ...
|
| Initializing FontDialog instance | 27 Oct 2005 17:44 GMT | 2 |
How do I initialize the font parameters when creating an instance of the FontDialog class? All the properties I'm interested in setting prior to showing the dialog (Bold, Italic, etc.) have only "get" accessors but no "set" access.
|
| handling f3 on the form | 27 Oct 2005 17:40 GMT | 2 |
I have a form and when the user presses the F3 key I want to set the focus to a textbox where the user can enter a search query. I figured this had to be really straightforward, but it turns out it isn't. I tried putting an eventhandler KeyDown on the form, but it never gets
|