How to compare two dates and determine if MyDate is less than VB Date?
MyDate = "11/15/2012"
Vb Date = "11/14/2012"
If MyDate < Date Then
'
' Do Not Allow
'
Else
'
' Allow
'
End if
MyDate = "11/15/2012"
Vb Date = "11/14/2012"
If MyDate < Date Then
'
' Do Not Allow
'
Else
'
' Allow
'
End if