C
cj
In VB 2008 how do I link the datagridview to a dataset?
mydataadapter.fill(myds, "test")
datagridview1.????????
When I was using 2005 I used the datagrid and it was done like:
mydataadapter.fill(myds, "test")
datagrid1.DataGrid1.SetDataBinding(ds, tableName)
but in 2008 with the datagridview setdatabinding doesn't exist.
mydataadapter.fill(myds, "test")
datagridview1.????????
When I was using 2005 I used the datagrid and it was done like:
mydataadapter.fill(myds, "test")
datagrid1.DataGrid1.SetDataBinding(ds, tableName)
but in 2008 with the datagridview setdatabinding doesn't exist.