我有 vb 2008 Winforms 应用程序。
在我的分支表单中,我有 11 个文本框字段,我想验证其中的 8 个,无论是强制性的还是必需的格式,例如英国邮政编码、英国电话号码等。
我现在的问题是,当验证开始时,它首先验证最后一个文本字段(或似乎是)
这是我的代码
For Each oCtrl As Control In Me.Controls
If TypeOf oCtrl Is TextBox Then
oCtrl.Focus()
If Validate() = False Then
Exit Sub
End If
End If
Next
请问怎么了?