In your table tbl_AirTrafficLog you have 2 fields - Date and Time (a bad choice of field names, btw.). They both are really datetime fields, and contain same date and time, but are formatted differently.
There is no reason to keep 2 different fields with same information. Scrap the one, and format remaining (name it something like FlightTime or whatever you like more) one as datetime, p.e. as "mm/dd/yyyy hh:mm".
In form for air Traffic Log leave also a single field.
In reports either use textbox with this datetime field as source, formatted in same way as in table, or hide it and use 2 unbound forms with source as
Code:
= INT([FlightTime])>
formatted as date ("mm/dd/yyyy"), and
Code:
= FlightTime - INT(FlightTime)
formatted as time ("hh:mm").
For any filter conditions also use
Code:
INT(FlightTime) = YourConditionDate