Click here to Skip to main content
15,886,006 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have following code
VB
For Each datarow In dtuserdeatils.Rows
    UserPointdeatils = dtPointdeatils.Clone()
    k = datarow("ID")

    For Each drpd In dtPointdeatils.Select("ID=" + k)
         UserPointdeatils.ImportRow(drpd)
    Next
   
    If Not UserPointdeatils Is Nothing Then
        //My Code
    End If
Next 

Here the issue is my datatable UserPointdeatils have only one column i.e ID where as dtPointdeatils has 5 columns.
How can I get all the column of dtPointdeatils in UserPointdeatils?
Posted
Updated 13-Dec-12 20:12pm
v3

1 solution

You can use the Copy method of datatable to copy one table to another. refer the following link for details:

http://msdn.microsoft.com/en-us/library/system.data.datatable.copy.aspx[^]
 
Share this answer
 

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