非常に単純な質問、および/または演算子を同じステートメントに組み合わせる方法。
c.GetTypeはgetType(TextBox)ANDfooまたはbarまたはbazです
これは機能していません
For Each c As Control In Me.Controls
If (c.GetType Is GetType(TextBox)) And ((c.Name <> "txtID") Or (c.Name <> "txtAltEmail")) Then
'do something
End If
Next
これは機能します:
For Each c As Control In Me.Controls
If (c.GetType Is GetType(TextBox)) And (c.Name <> "txtID") Then
'do something
End If
Next
ありがとう、私は.net初心者です!