Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
"^[0-9]{2}\/[0-9]{2}\/[0-9]{2}$"
VBScript_RegExp.RegExp
Pattern
Dim objRE As VBScript_RegExp.RegExp
Set objRE = New VBScript_RegExp.RegExp
objRE.Pattern = "^[0-9]{2}\/[0-9]{2}\/[0-9]{2}$"
If objRE.Test(txtDate.Text) Then
Call MsgBox("Date is Correct.")
Else
Call MsgBox("Date is Incorrect.")
End If