Click here to Skip to main content
15,922,894 members

Comments by RuchitaGavali (Top 4 by date)

RuchitaGavali 27-Jul-12 1:01am View    
For j As Integer = 0 To DataGridView2.Rows.Count - 1
If CBool(DataGridView2.Rows(j).Cells(1).Value) = True Then
Dim r As Form1.DataGridView2.Rows.count
Form1.DataGridView2.Rows(r-1).Cells(0).Value = DataGridView2.Rows(j).Cells(0).Value

End If
Next
RuchitaGavali 26-Jul-12 6:57am View    
I have one Datagridview with checkbox in 1st column, if there are 10 records and I select only 5 records using checkbox in Datagridview, on the click event of button it gets viewed in 2nd Datagridview.

To store data in Datagridview I used Data table.
RuchitaGavali 26-Jul-12 6:55am View    
I have one Datagridview with checkbox in 1st column, if there are 10 records and I select only 5 records using checkbox in Datagridview, on the click event of button it gets viewed in 2nd Datagridview
RuchitaGavali 26-Jul-12 6:55am View    
Deleted
I have one Datagridview with checkbox in 1st column, if there are 10 records and I select only 5 records using checkbox in Datagridview, on the click event of button it gets viewed in 2nd Datagridview