Dataset

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I've got a dataset with one table table[0]

This table has 3 different rows.
I've created 3 different datatable objects and I would like each table to contain the content of each row from the dataset

How can I do that?
Thanks
 
If you have different criteria for each table, like

Table 1 = managers
Table 2 = employees
Table 3 = temps

And you include the info to tell which rows fit each categoy.

Then, you can set up three DataView objects and filter each accordingly. You
can then bind the DataViews to your different tables.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************
Think Outside the Box!
************************************************
Marc Cardenas said:
Hi,
I've got a dataset with one table table[0]

This table has 3 different rows.
I've created 3 different datatable objects and I would like each table to
contain the content of each row from the dataset
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top