J
JethroUK©
I'm trying to detect whether a date has been typed into a box (cboFILTERS):
Select Case cboFILTERS
Case "NEED A LETTER"
blah
Case "NEW STARTS"
blah
Case "ACTIVE CLIENTS", "ENROLLED NOT SUBMITTED"
blah
Case IsDate(cboFILTERS) '<<<<<<<<<<< it doesn't seem to like this at
all
blah
Case Else
blah
End Select
any clues?
Select Case cboFILTERS
Case "NEED A LETTER"
blah
Case "NEW STARTS"
blah
Case "ACTIVE CLIENTS", "ENROLLED NOT SUBMITTED"
blah
Case IsDate(cboFILTERS) '<<<<<<<<<<< it doesn't seem to like this at
all
blah
Case Else
blah
End Select
any clues?