Click here to Skip to main content
15,888,803 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a data Table (A) has update every 2 Sec and need to do
Create dataset has two table get data from table (A) as reference to be updated like table (A)
Does anyone know how to make it?
Posted

1 solution

How about, creating 2 datatables.
Do your update int the 1st datatable every 2sec
Reference the 2nd datatable
DataTable dt2 = new DataTable();
dt2 = dt;

Then put these datatables on a single dataset
 
Share this answer
 
Comments
Eslam Nader (END) 27-Nov-11 7:18am    
That's ok but i need two data tables in data set every table see some rows form my first table (A) need to see row upon select criteria

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900