Hello :) i have a datagridview and want to display columns from multiple tables. I know how to display columns from 1 table, but from 2, for exemple, i don't. Here's the code used for 1 table.
SqlDataAdapter dataAdapter1 = new SqlDataAdapter("SELECT * FROM client", conn);
dataAdapter1.Fill(dataSet, "client");
clientGridView.AutoGenerateColumns = false;
clientBS.DataSource = dataSet.Tables["client"];
clientGridView.DataSource = clientBS; //clientBS is a binding source
thanks!
thanks!