フォームのすべてのチェックボックスにレジストリ キーを設定しようとしていますが、次のコード ブロックでエラーが発生します。'Checked' is not a member of 'System.Windows.Forms.Control'
誰かがこのエラーが発生する理由を見つけるのを手伝ってもらえますか?
' Create the data for the 'Servers' subkey
Dim SingleControl As Control ' Dummy to hold a form control
For Each SingleControl In Me.Controls
If TypeOf SingleControl Is CheckBox Then
Servers.SetValue(SingleControl.Name, SingleControl.Checked) ' Error happening here
End If
Next SingleControl