0
次のコードはうまくいきます。各ループのためにSelectionStart Doesnt Work
For Each c As Control In TabPage1.Controls
If Not TypeOf c Is Label Then
c.Enabled = False
End If
Next
次のコードは機能します。
TextBox1.SelectionStart = 0
次のコードは機能しません。
For Each c As Control In TabPage1.Controls
If TypeOf c Is TextBox Then
c.SelectionStart = 0
End If
Next
これはエラーメッセージです。
'はしたselectionStart 'System.Windows.Forms.Control'
ありがとうございました。 – Kramer