| Thread | Last Post | Replies |
|
| How to raise an event? | 21 Sep 2005 05:06 GMT | 2 |
I've an event that belongs to a ToolBar: Private Sub ToolBar1_ButtonClick(ByVal sender As Object, ByVal e As System.Windows.Forms.ToolBarButtonClickEventArgs) Handles ToolBar1.ButtonClick ...
|
| get key state | 21 Sep 2005 02:56 GMT | 1 |
I would like to know the state of the keyboard. more precisely I would like to know if the 'SPACE' key is pressed or not. how od I do that?
|
| OnPaint of Datagrid | 20 Sep 2005 23:26 GMT | 1 |
I cannot remember where I read the article, however I read one that showed me how to overide the paint function of a datagrid so that I could highlight certain cells in different colours. This works great however if I sort the datagrid by a particular column the rows do not get ...
|
| Patterns and best practise for model/view/controller separation? | 20 Sep 2005 23:04 GMT | 3 |
I have quite some design experience on other platforms and especially with web applications. Now I'm about to design a .NET application and am a little stuck as I am trying to apply my "habits" of separating model, view and controller. Either that is the totally wrong approach
|
| Catching MDI Application Closing | 20 Sep 2005 20:52 GMT | 5 |
I have an MDI application with a number of child windows. In each child window I am catching the Closing event and having the child window decide if it should set cancel to true. The intent here is to ensure that no child window can close while it is in a state where user ...
|
| Interfaces in Framework 2.0 | 20 Sep 2005 16:50 GMT | 2 |
Is it always a good idea to have a Interface. Does it have any performance issues. I am referring to Framework 2.0 Beta, Visual Basic 2005. John.
|
| Scrolling in a list box | 20 Sep 2005 13:28 GMT | 1 |
I have two list boxes of the same size and the same number of items in them. The number of items is big, so to accommodate them the list boxes display vertical scroll bars. I want to synchronize the vertical scrolling of these two list boxes, so
|
| Help file conversion | 20 Sep 2005 12:19 GMT | 1 |
I want to display help files in my windows application. Please tell me how to display .chm files through my C# code. Thx in advance. Prasad.
|
| Get ALL controls on a Form | 20 Sep 2005 11:42 GMT | 8 |
Is there actually a way to get ALL the Controls on a Form? While using the ControlCollection, it only returns the Controls that are directly on the Form, not the controls that are on a (TableLayout)Panel etc. I never found something like that, but it just would be nice in my opinion
|
| DataBinding to Custom Class breaks after New instance: how to get around this? | 20 Sep 2005 10:08 GMT | 3 |
I'm having the following situation: - A class clsFournisseur with public property's which raise a MyPropertyChanged-event in the Set-method for each Property. Public Event NomChanged As EventHandler
|
| MouseUp event "falls through" FileDialog and activates control underneath | 20 Sep 2005 05:58 GMT | 2 |
In my app I have a UI control that responds to MouseUp events and opens a FileDialog. If an item in the dialog is double-clicked (instead of clicking on it then clicking OK) AND that item is over my UI control, the final MouseUp of the double-click is registered by my control ...
|
| Re: Problem with listbox horizontal scrollbar | 20 Sep 2005 04:08 GMT | 1 |
I am having exactly the same problem, made worse by the fact that MeasureString introduces a very significant slowdown. Can anyone help? Best wishes, Alex.
|
| ComboBox BindingContext | 20 Sep 2005 01:57 GMT | 2 |
I have 2 ComboBoxes on a form bound to the same DataSet using a New BindingContext for the second one. Both ComboBoxes need to have their SelectedValue bound to a different DataSet . The first one works properly, but the second one will not select any value. I am pretty sure ...
|
| What makes this code slow | 20 Sep 2005 01:38 GMT | 13 |
This code resets a form with two cbo's (comboBoxes) and one datagrid. The first cbo (cboSelection) selects a main table and filters the second cbo. The second cbo (cboView) selects the secondary table which determine the dataAdapter used to fill the dataGrid. Both cbo's are
|
| Clear Selection of a listbox | 20 Sep 2005 00:24 GMT | 3 |
I have couple of listboxes and a couple of combo box on a form. The listboxes are databound. I am trying to clear the selection of the listboxes if they are not selected by using ListBox.ClearSelected() but in vain. The following lines are in the constructor of the form.
|