Have you tried creating a new db and importing the relevant form, query and table. Delete all records in the new db and then create a couple of fictitious records. Compact, zip and post the file.
In that case, I would use the following expressions as calculated fields in the query:
startOfDay: DateValue(Now())
endOfDay: DateAdd("s",-1,DateAdd("d",1,[startOfDay]))
Where do you want to use it?
In a query, you could use each line as an expression to create a calculated field for each value.
On a form, you could use:
= GetCurrentDayDates()(0)
and
= GetCurrentDayDates()(1)
as the Control Source properties of two unbound textboxes.