| Thread | Last Post | Replies |
|
| Capture the NewRow event for a DataGrid | 28 Oct 2004 19:15 GMT | 2 |
let me set the stage for my question.. A C# winform with one datagrid on it. A DataTable dt that has some data in it bound to the datagrid using setbindings().
|
| textbox focus | 28 Oct 2004 19:09 GMT | 4 |
In a windows application, in the form, I have a text box and I use Me.MyText.Focus(), this does not get focus to the text box, what shoudl I do? Thanks,
|
| Getting dataset row from datagrid | 28 Oct 2004 18:32 GMT | 2 |
I have a grid that is the list portion of a list & detail set. I am catching the SelectedIndexChanged event and using dslistdata.Tables(0).Rows(grdListDisplay.CurrentRowIndex) to get the data that fills the grid's row from the underlying dataset. This works fine if
|
| Transparent controls using modified PictureBox as container | 28 Oct 2004 16:58 GMT | 13 |
I was the original poster for a previous thread entitled "Why must I paint the form background for an owner-draw control?", which can be reviewed at the following URL, if you recombine all of the lines: http://groups.google.com/groups?
|
| DataGridBoolColumn and Arraylist don't work right | 28 Oct 2004 16:45 GMT | 2 |
I have a datagrid, datasource is an Arraylist. I've been able to add the columns I want; a few string columns and a few DataGridBoolColumns. The ArrayList is being populated before the form is opened, and all the data appears on it as I would expect, except for the ...
|
| AddOwnedForm method vs MdiParent property | 28 Oct 2004 14:51 GMT | 1 |
Can someone tell me what is different purpose between AddOwnedForm method and MdiParent property of Form class member? Cheer, KPH
|
| Creating similar versions of apps with inheritance | 28 Oct 2004 14:36 GMT | 2 |
Could someone give me the general overview of how I could go about this: I am creating two applications that are based on virtually all the same code. The main difference will be the 3rd party control that will be the majority of the main form. Each version of my app will have a ...
|
| Filtering problem on DataView | 28 Oct 2004 14:35 GMT | 1 |
Hello, I'm very very new. so please be pacient =) I'm trying to set the DataSource of a datagrid using the RowFilter property of a dataView. Employee is the Table already in a Dataset (connection to SQL Server)
|
| MDI child sizegrip shows but doesn't work. | 28 Oct 2004 13:29 GMT | 1 |
I'm developing a MDI based application, but when I enable sizegrip it shows, but I can only resize by dragging the edge of the form, as if there is no sizegrip. The same behaviour occurs when I use a statusbar. Do you have that problem to?
|
| Getting the tab I am coming from | 28 Oct 2004 12:31 GMT | 6 |
Is there a way in the tab control's SelectedIndexChanged event to tell which tab the user was on (rather than the one that has been selected to throw the event)? I know that I can add code to the form to keep track of this, but I would prefer to do it "automagically" if possible ...
|
| newbie - datagrid formatting | 28 Oct 2004 11:25 GMT | 1 |
My problem is that I can't format the datagrid (WindowsForm) in a WinCE application. I'm working with VS .NET 2003. What I want is to give a headertext to the columns and to adjust programatically the width.
|
| Help on System.Drawing.Printing.PrintDocument | 28 Oct 2004 10:47 GMT | 2 |
Question which is involving "System.Drawing.Printing.PrintDocument". How to check the printing status of the document I sent to printer ? How do I check the printing queue using this object ? How do I cancel the printing ?
|
| HOw to populate the combo box in C#? | 28 Oct 2004 07:09 GMT | 3 |
I have a combo box (C#)that I want to populate from a SELECT query How to do this?
|
| reference a public property in another Form? | 28 Oct 2004 05:03 GMT | 1 |
I have a main form, with a public property. And this form open another form by click a button. Is it possible that the new created form access the public property of the main form? public class MainForm : System.Windows.Forms.Form
|
| Multiple Windows when using AxWebBrowser | 28 Oct 2004 05:00 GMT | 1 |
I am developing a Windows Foms application that is hosting a WebBrowser control. I am trying to open multiple windows of my application. I am able to do that by using the following code in my New Window event: Form1 newWindow = new Form1();
|