Click here to Skip to main content
15,891,657 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

How do I get selected row data from data grid view to another form data grid view.

I have a datagridview with multiple columns and rows. The first column contains a checkbox. I want the user to be able to select multiple checkboxes and then click on OK button . For example if they select checkboxes in rows 1 and 2, the data from other columns in rows 1 and 2 can be selected and passed into another form data grid view..

How to do this for multiple rows..?
Thanx..!
Posted

1 solution

Hi,

i don't know whether this is a proper answer for this question...but u can try it using arrays..store the data of selected rows in 2 dimensional array..

[][] = { {"row1col1","row1col2","row1col3"},
{"row2col1","row2col2","row2col3"} };

then pass the array to the next form...Then u can fill the gridview by datagridview.add(array elements)..Hope this help u...if not u can try it using similar mechanism :-)
 
Share this answer
 
Comments
SrujanaN 13-Apr-13 1:23am    
Thanq

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