If your dataset already contains a datatable with a data, then it should show the contents of your datatable. Be sure that your datasource or dataset is not empty. Or if your using asp.net then you should bind the control after setting its datasource.
DataGrid Questions in new Version
Mesktomten
Bindings in Datagrid should be this way:
Dim ds as DataSet
datagrid1.DataSource = ds
cheers,
Paul June A. Domag
Thos
If your dataset already contains a datatable with a data, then it should show the contents of your datatable. Be sure that your datasource or dataset is not empty. Or if your using asp.net then you should bind the control after setting its datasource.
datagrid1.DataBind()
cheers,
Paul June A. Domag
tstdemo
But this not works !
If i use this there are no Data in the Datagrid.
Must i update the Datagrid to see the Data