CheckBoxes がチェックされているかどうかを分析する必要があります。TabPage には 10 個の CB があり、順番に名前が付けられています (cb1、cb2、cb3 など)。
For Each c As CheckBox In TabPage4.Controls
If c.Checked Then
hello = hello + 1
End If
Next
上記を試しましたが、未処理の例外エラーが発生します。
An unhandled exception of type 'System.InvalidCastException' occurred in WindowsApplication2.exe
Additional information: Unable to cast object of type 'System.Windows.Forms.Label' to type 'System.Windows.Forms.CheckBox'.