Playing Values from a DataGridView to another DataGridView

0
Good night guys, I have a problem. I have a datagridview that is connected to the database. I have a filter on this normal grid. Now I want to get the filtered values of this grid and play in another Normal grid, created in the hand without connection with bank. In short I want to carry the values from one grid to another grid.

Help me.

    
asked by anonymous 31.08.2017 / 01:58

1 answer

0

Correct code:

dataGridView2.DataSource = dataGridView1.DataSource 
    
31.08.2017 / 02:20