當構建一個IF Then語句時,我想在輸入的用戶表單數據不是三個之一時引起對文本框的注意已批准的選項(1,0或X)...If TextBox.Value =(「」,<0,> 1,OR <>「x」)Then
寫這個的最好方法是什麼?
這是我有:
If Textbox.Value = ("",<0,>1,OR <>"x") Then
Textbox.BackColor = rgbPink
Textboxlabel.ForeColor = rgbRed
Textbox.SetFocus
Exit Sub
End If
我想我找到我的答案! 如果TextBox.Value <>「1」或TextBox.Value <>「0」或TextBox.Value <>「x」Then 它似乎測試就好。感謝大家! –