Dynamically loading a Table

Hi all,

I’m reading from a DataSet and I need to programmatically load the data into a Table. Is there a quick way of doing it or do I simply have to loop through the DataSet and add the records one by one?

Either that or is there a way to programatically link a Table to a DataSet?

Thanks! :slight_smile:

You can set all the rows of a table at one using the .rows property.

How do I go about linking them to a DataSet all at once?