Unfortunately, there isn't any way for a printer to communicate to Access
that you spilled coffee on one page. I suggest that you print selected
records which don't have a print date, then upon successful completion use
an update query to update the print date with the current date. If you need
to reprint, you'll be able to find the records of a specific date. The code
for the report's recordsource would look something like:
"SELECT DISTINCTROW MemberID, FirstName, LastName FROM tblMembers WHERE
(((Left(LastName,1) In (" & Me.txtSelected & "));"
where txtSelected was a textbox that had the letters "A", "B", "C"

Signature
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
> Access 2003
>
[quoted text clipped - 9 lines]
>
> Regards - Paul
PR - 31 Mar 2007 10:02 GMT
Arvin,
Many Thanks, can I use this directly on a form?
Regards
> Unfortunately, there isn't any way for a printer to communicate to Access
> that you spilled coffee on one page. I suggest that you print selected
[quoted text clipped - 20 lines]
>>
>> Regards - Paul
Arvin Meyer [MVP] - 31 Mar 2007 17:01 GMT
I use the technique from an unbound form which is significantly more complex
that what you need to do. The text box I use to supply data to the In
Clause, is filled with comma separated long integers. They don'r require the
quotes around each element of the string like text does.

Signature
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
> Arvin,
> Many Thanks, can I use this directly on a form?
[quoted text clipped - 24 lines]
>>>
>>> Regards - Paul