Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. For Each row As DataGridViewRow In grdItems.Rows
  2.  
  3. Dim bool1 As Boolean
  4. Dim bool2 As Boolean
  5. Dim bool3 As Boolean
  6. Dim bool4 As Boolean
  7. Dim bool5 As Boolean
  8.  
  9. bool1 = Boolean.Parse(row.Cells(4).Value.ToString)
  10. bool2 = Boolean.Parse(row.Cells(5).Value.ToString)
  11. bool3 = Boolean.Parse(row.Cells(6).Value.ToString)
  12. bool4 = Boolean.Parse(row.Cells(7).Value.ToString)
  13. bool5 = Boolean.Parse(row.Cells(8).Value.ToString)
  14. ...
  15. Next
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement