1
Answer

how to create checkbox on datagrid in vb.net for the pupose of deletion of record from datagrid

aadi kumar

aadi kumar

11y
1.4k
1
...aadi
Answers (1)
1
Ish Bandhu

Ish Bandhu

NA 1.5k 272.5k 12y
you can code for that like:
private List RemoveTheSmallPipes(List lst)
{
     foreach (PipesList pipelist in lst)
     {
          List lst1 = pipelist.Pipes;
          foreach (Pipe pipe in lst1.ToList())
           {
                 if (pipe.length < 19)
                  {
                    pipelist.Pipes.Remove(pipe);
                    lst1 = pipelist.Pipes;
                   }
          }
       } return lst;
}