Two expressions for converting the text date and time to date and time:-
DateSerial(Left([TextDate],4),Mid([TextDate],5,2),Right([TextDate],2))
TimeSerial(Left([TextTime],2),Mid([TextTime],3,2),Right([TextTime],2))
If your version of Access doesn't have the TimeSerial() function, you can...