Can I set my print default in aceess 2003 to selected records

T

tcdoriot

Can the default print option be set to selected records instead of all.

Thank you
Tim
 
R

Rick Brandt

tcdoriot said:
Can the default print option be set to selected records instead of all.

No, you have to apply a filter. The OpenReport method of DoCmd includes an
argument where you can supply filter criteria. Check the Help file for details.
The problem then becomes one of identifying the "selected records" and building
an appropriate filter string from that information.
 
L

Larry Daugherty

How you arrive at "selected" records may determine the possibilities. You
could have different reports for different printers or you can resolve which
printer you want in code.

HTH
 
Top