two datagridviews same datatable

I have two datagridviews on a form. Both dgv's will pull from the same datatable. The tableadapter has two fill methods (one used for each dgv). On the form I dropped one dataset, two bindingsources, and two tableadapter controls. Each dgv was set to use one of the two different bindingsources, and each tableadapter is filled in the load event. Anyway, both datagrids have the same data even though the fill methods are supposed to be getting different data. I cannot for the life of me figure this one out.

Any help is appreciated.

[551 byte] By [steveareno] at [2007-12-22]
# 1

A datatable only contains one set of data. If you want to show two different sets, you'll need two datatables.

Tony

tkerns at 2007-8-30 > top of Msdn Tech,Windows Forms,Windows Forms Data Controls and Databinding...
# 2

I was kinda thinking that; in other words, I need two dataset controls on the form huh?

Thanks.

steveareno at 2007-8-30 > top of Msdn Tech,Windows Forms,Windows Forms Data Controls and Databinding...