VB Code:
Dim Date1() As String, Date2() As String
Dim rDate As Date, bDate As Date
'parse data
Date1 = Split(txtReviewDate.Text, "/")
Date2 = Split(txtBidDate.Text, "/")
'check for incorrect number of elements
If UBound(Date1) <> 2 Then Exit Sub
If UBound(Date2) <> 2 Then Exit Sub
'make actual dates (year, month, day)
rDate = DateSerial(Date1(2), Date1(1), Date1(0))
bDate = DateSerial(Date2(2), Date2(1), Date2(0))
If rDate > bDate Then 'the date is bigger
'do stuff
Else 'it is not
'do stuff
End If