codice:
For i = 0 to Table1.Rows.Count - 1
  If CType(Table1.Rows(i).Cells(1).Controls(1), CheckBox).Checked Then
      'Il check box è spuntato
      NewSelez(i) = True
   Else
      'Il check box non è spuntato
      NewSelez(i) = False
   End If
Next i
Così eviti anche di creare quell'array "Andrea".

Auguri!