我有一個郵政編碼的文本框,其中我做了一個驗證,即用戶輸入的數字少於或多於6,但即使用戶輸入了3個數字,它仍在工作。我想要顯示錯誤消息,如果用戶進入不對勁如何驗證TextBox?
Private Shared Function ValidateZip(ByVal pintZip As String, ByRef pobjErrMsg As Common.ErrorMessage) As Boolean
If pintZip.Length <> 6 Then
ElseIf IsNumeric(pintZip) Then
End If
Return True
End Function
所以你寫的'如果pintZip.Lenght <> 6 Then'然後呢? – Hoh
我上面提到過,如果用戶輸入錯誤的郵政編碼,我想顯示一條錯誤消息 – anuj