フォームに5つのマスクされたテキストボックスがあります。日付形式の2つのマスクされたテキストボックス、2つはお金、1つは電話番号。これらのボックスが空かどうかをチェックするために、以下のコードを使用しています。
Dim mtxt As Control
Dim flagmtxt As Boolean
flagmtxt = False
For Each mtxt In EMPGBDATA.Controls
If TypeOf mtxt Is MaskedTextBox Then
If mtxt.Text = "" Then
mtxt.BackColor = Color.Red
flagmtxt = True
End If
End If
Next
If flagmtxt Then
MessageBox.Show("Give Compleate Data!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning)
End If
給与形式のマスクされたテキストボックスのチェックを避けたい。チャンスはありますか?