I found one Access function that solve my problem, it trasforms a string into a date. The function is DATEVALUE
Unfortunately it seems that Access does not consider the expression about the Hour, infact the two statemets here attached, extract the same data
SELECT SROSSI_ANDIP00F.* FROM SROSSI_ANDIP00F WHERE (((SROSSI_ANDIP00F.TMSVAR) >= DateValue("2003-06-05 13.37.54")));
SELECT SROSSI_ANDIP00F.* FROM SROSSI_ANDIP00F WHERE (((SROSSI_ANDIP00F.TMSVAR) >= DateValue("2003-06-05 13.37.53")));
Ciao, S.