datagrid view
how i view my updated data of table in datagrid view?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Michael SheleyPosted May 17, 2010, 8:41 AM
If you use the properties of the form and the datagrid you can set it up for read/write, adding and deleting records.
Right click on the grid and select edit columns.
Mike
sanjay dondaPosted Apr 29, 2010, 10:19 AM
can u tell me how can i use datagrid as a data entry source.....
i mean i want to enter the data by using the data grid....
can it b possible??
Jon WoffPosted Feb 11, 2010, 12:08 AM
Because if it is in a Dataset then the Datagrid will update itself as you add or delete items from the dataset.
To link a dataset to a dategrid you would use this command.
DataGrid1.DataSource() = Dataset1.Tables("Table1")
Any changes to Table1 will be shown in the datagrid.