Hi,
I know binding to datagrid but I don't know to show some coloumns.
Example:
Dim adopter As New OleDbDataAdapte r("select * from IPSAVE", baglanti)
Dim ds As DataSet = New DataSet
adopter.Fill(ds , "IP")
DataGrid1.DataS ource = ds.Tables("IP")
But I don't want to change OleDbDataAdapte r("select * from IPSAVE", baglanti)
Wiil I bind Some coloumns to datagrid.Can I change DataGrid1.DataS ource = ds.Tables("IP")
I know binding to datagrid but I don't know to show some coloumns.
Example:
Dim adopter As New OleDbDataAdapte r("select * from IPSAVE", baglanti)
Dim ds As DataSet = New DataSet
adopter.Fill(ds , "IP")
DataGrid1.DataS ource = ds.Tables("IP")
But I don't want to change OleDbDataAdapte r("select * from IPSAVE", baglanti)
Wiil I bind Some coloumns to datagrid.Can I change DataGrid1.DataS ource = ds.Tables("IP")
Comment