Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Team,

How to delete the checked row alone in data grid view.
I have below code to create check box

VB
Private Sub ADD_Column()
      With AddColumn
          .HeaderText = "FollowUp"
          .Name = "FollowUp"
          .Width = 80
          .ReadOnly = False
      End With

      DataGridView1.Columns.Insert(0, AddColumn)

  End Sub


i use this to delete

VB
Dim x As Integer
       For x = (DataGridView1.Rows.Count - 1) To 0 Step -1
           If DataGridView1.Rows(x).Cells(1).Value = False Then
               DataGridView1.Rows.RemoveAt(x)
           End If
       Next


But unable to delete. Please help me in deleting the checked row data alone
Posted
Comments
Steve44 23-Apr-13 16:50pm    
What error do you get in which line? This information would help greatly in locating your problem.
Member 9989624 24-Apr-13 22:20pm    
I have got the solution thanks.
Sergey Alexandrovich Kryukov 28-Jul-13 2:06am    
Have some shame. How your post could be a solution?
—SA

1 solution

 
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