我用盡並取得了非常簡單的代碼只是爲了嘗試和驗證一個文本框。這是用戶的輸入日期。每次我得到Else代碼都意味着日期未被正確驗證。任何想法如何使其工作?如何驗證用戶輸入的是用VB中則IsDate()
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
If IsDate(TextBox1) Then
MsgBox("well done")
Else
MsgBox("you failed")
End If
End Sub
嘗試將此值設置爲日期數據類型。 –