Question 1
I am binding a DataGrid to DataSource as follows:
DA = New SqlDataAdapter("SELECT * FROM Employees", myConn)
DA.Fill(DS, "Employees")
myDataGrid1.SetDataBinding(DS, "Employees")
Does a TableStyles gets created in this case?
Question 2
How to ascertain how many TableStyle exists in a DataGrid?
I am binding a DataGrid to DataSource as follows:
DA = New SqlDataAdapter("SELECT * FROM Employees", myConn)
DA.Fill(DS, "Employees")
myDataGrid1.SetDataBinding(DS, "Employees")
Does a TableStyles gets created in this case?
Question 2
How to ascertain how many TableStyle exists in a DataGrid?