Please can some one help me with the following?
On my form I have a dataset which I want to use to store subset of 4 tables.
I have a DataGrid on the form which is bound to one of the tables in the dataset.
DataGrid1.DataSource = ds.Tables("mASTER")
How can I highlight the entire datagrid row when selecting a row with keyboard (i.e. Up/Down) and mouse?
How Can I display only certain columns in grid (At present I'm displaying every field in this table)?
Is there a way to select the datarow of the table when I navigate through the grid? I want to edit the data in a separate form rather than editing the grid itself.
Any help will be greatly appreciated.
On my form I have a dataset which I want to use to store subset of 4 tables.
I have a DataGrid on the form which is bound to one of the tables in the dataset.
DataGrid1.DataSource = ds.Tables("mASTER")
How can I highlight the entire datagrid row when selecting a row with keyboard (i.e. Up/Down) and mouse?
How Can I display only certain columns in grid (At present I'm displaying every field in this table)?
Is there a way to select the datarow of the table when I navigate through the grid? I want to edit the data in a separate form rather than editing the grid itself.
Any help will be greatly appreciated.