I hope this helps
I realized that I wanted to do more with the print function so I created a button that would access a MACRO that used a query to select the info I wanted (a singular entry) and then send the information to a generated report and the print the selected report.
This gave me a more customized printing of the information that I was looking for.
-------------------------------------------------
I solved this problem by adding a button:
in On Click I added a Macro entitled "mcrPrintReport"
The MACRO named "mcrPrintReport"
the macro has an "OpenReport" in the Action column
In the lower section I added
"rptLedgerInv" in the Report Name
"Print" in the View
"qryIndividualreports" in the Filter Name
"Normal" in the Window Mode
The Query named "qryIndividualreports"
Is used as a filter to identify the fields that will be used
in the report. It can contain multiple tables, to help polpulate your report. In the [contains] field of the first column I added
[forms]![frmLedger]![LedgerID]
to bind the unique ID number [LedgerID]
The Report Named "prtLedgerInv"
This is a report that can be tailored to your design "look and Feel" it's source must be a query that contains all the information/tables that the you have selected in "qryIndividualreports"
---------------------------------------------------
I hope that helps.
G
