If you want the information on a form then just set up a filter. Create a form with two textboxes(txtBeginDate and txtEndDate) and a command button. On Click of the command button, put the following code
if isnull(me("txtBeginDate")) then
msgbox "You must fill in a beginning Date."
exit sub
elseif isnull(me("txtEndDate")) then
msgbox "You must fill in an end date."
exit sub
else
docmd.openform "Your_Form_Name", , , "[DateField]>=#" & me("txtBeginDate") & "# AND [DateField]<=#" & me("txtEndDate") & "#"
end if
Hope that helps..
Doug