AdoTable1.Filter:=
'Date = #'+FormatDateTime('dd/mm/yyyy', Tomorrow)+ ' #' ;
Why is Date surrounded with number signs?? Is this Access -specific??
thanks in advance!
AdoTable1.Filter:=
'Date = #'+FormatDateTime('dd/mm/yyyy', Tomorrow)+ ' #' ;
Why is Date surrounded with number signs?? Is this Access -specific??
thanks in advance!
DrStrangeLove, the #
sign (hash-marks) is the delimiter for a date field in access, you can check this paper for more info about delimiters in Access.