Hello,
You can't use a dataset nor a datatable to feed a
datagridview, you've
got to use bindingSource instead.
BindingSource bs = new BindingSource();
bs.DataSource = db_data.Tables[0];
dbgView.datasource = bs;
Hope it helps.
Martin Garmendia
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "C-Sharp (C#)" group.
To post to this group, send email to C_Sharp googlegroups.com
To unsubscribe from this group, send email to
C_Sharp-unsubscribe googlegroups.com
For more options, visit this group at htt
p://groups-beta.google.com/group/C_Sharp?hl=en
-~----------~----~----~----~------~----~------~--~---
|