| Thread | Last Post | Replies |
|
| Forms in Tab control | 18 Apr 2005 18:55 GMT | 4 |
I want to dispaly different forms in different tab pages of tab control. How can I do this? any help is appreciated. Regards,
|
| How to host HTML Help Viewer in MDI child form? | 18 Apr 2005 03:34 GMT | 6 |
I am developing an MDI Windows Forms application using VS.NET 2003 in C#. I want to display help for the application when the user presses the F1 key. I have been able to get the HTML Help Viewer to display in a separate form as shown below.
|
| Databinding "synchronization" | 18 Apr 2005 01:46 GMT | 1 |
I have a simple winform. On the form, I have a DataGrid and a Textbox, along with a typed (and filled) dataset. First, I add a databinding to the textbox, binding it to a field in say... Northwind's Customers table. Then I databind the datagrid by setting the
|
| Struggling to add a new Row to DataView | 18 Apr 2005 00:13 GMT | 4 |
I can't believe I am struggling with this, but I am. I have a form with the controls bound to a DataView. The form has an "add" button which is meant to add a new row. I do this with the code below
|
| Brind Window to the Front | 17 Apr 2005 23:47 GMT | 14 |
I have an application that when it starts it displays a splash screen. This splash screen is running in a separate thread. It displays fine and as my application is loading it is updating the status on the splash screen with what it is doing. Then when my application is loaded ...
|
| Equivalent to OnUpdateCmdUI? (how to update menus/toolbars in .NET?) | 17 Apr 2005 21:47 GMT | 2 |
I'm working on the first non-trivial application written in C#/.NET, and I'm having to implement a lot of the framework that was provided in MFC. In particular, menu items and toolbar buttons would enable/disable/check/whatever automatically, as long as you handled the
|
| Winforms and cookies | 16 Apr 2005 15:48 GMT | 1 |
Is there any way I can access a cookie stored by a browser from a winform? Thanks, Phil
|
| Slow ListView Performance due to painting | 16 Apr 2005 12:54 GMT | 6 |
In .net 2.0 (beta 1), I've got a ListView that contains 1000 items. I've set it so when I click the heading of a column, it groups by that column. All works fine, but because the listview is redrawing after every change, it's quite slow. If I uncomment the .Visible lines, it's ...
|
| VB.Net Sub Menu Array | 16 Apr 2005 08:39 GMT | 3 |
I am trying to add sub menu options at runtime. It was a simple task in VB6 For x = 0 to 5 Load mnuNames(x)
|
| VB6 to VB.Net Conversion | 16 Apr 2005 01:49 GMT | 1 |
Could someone please help me converting the following lines of vb6 code to vb.net. The message box should display "1/3/2005" if it is executed today. Private Sub Form_Load() Dim nWeekNumber As Integer
|
| Transparent controls | 16 Apr 2005 01:37 GMT | 1 |
Assume that we have a control which draws something on its background. I need to place some labels and checkboxes on this control. And how can I make the background of these controls to be transparent? I just want from label and checkboxes to display only text, but not its back ...
|
| WinForm Timer question? | 15 Apr 2005 22:21 GMT | 1 |
How much and dangerous is the WindForm Timer for my application? Is it loding the memory while it is running? thks
|
| How to get control clipping region? | 15 Apr 2005 21:58 GMT | 2 |
How do you retrieve the visible clipping region for a control? I have a control where I do some on-screen drawing (specifically ControlPaint.DrawReversibleLine()), however I need to clip the line to the visible bounds of my control.
|
| Selecting entire row in DataGrid | 15 Apr 2005 21:26 GMT | 1 |
Is there any way to disable highlight on selected cell in DataGrid ? I want to select entire rows and only rows in my DataGrid. DataGrid is readonly. I put that into my code :
|
| Calculating Rows in a Datagrid to a textbox | 15 Apr 2005 16:50 GMT | 1 |
In my datagrid i have a column that contains totals which I wish to to keep a running total of in a text box elsewhere on my windows form. So if a row is removed from the datagrid then the running total is reduced and if added then it is added.
|