我知道下面的代码可用于检查空文本框。
Dim emptyTextBoxes =
From txt In Me.Controls.OfType(Of TextBox)()
Where txt.Text.Length = 0
Select txt.Name
If emptyTextBoxes.Any Then
MessageBox.Show(String.Format("Please fill following textboxes: {0}",
String.Join(",", emptyTextBoxes)))
End If
如果我只想检查特定的texbox,该怎么办?例如,我有10个文本框,我只想要检查其中的6个是否为空