hello,
Can I show relationship between tables in the datagrid control.
I have written a below code for establish relation b/w tables.
dset.Relations. Add("Customer requests",
dset.Tables["Customers"].Columns["icustid"],
dset.Tables["requests"].Columns["icustid"]);
Can I show relationship between tables in the datagrid control.
I have written a below code for establish relation b/w tables.
dset.Relations. Add("Customer requests",
dset.Tables["Customers"].Columns["icustid"],
dset.Tables["requests"].Columns["icustid"]);
Comment