我的表单中有蒙面文本框。一个是工资,PF&ESI,其他是电话号码。我尝试使用以下代码检查蒙面文本框是否为空。
Dim mtxt As Control
Dim flag3 As Boolean
flag3 = False
For Each mtxt In EMPGBDATA.Controls
If TypeOf mtxt Is MaskedTextBox Then
If mtxt.Text = "" Then
mtxt.BackColor = Color.Red
flag3 = True
End If
End If
Next
只有我的工资,PF&ESI 蒙面文本框以红色显示,但电话号码蒙面文本框不显示红色。