Print specific entry

cherosoullis

Registered User.
Local time
Today, 19:43
Joined
Jun 23, 2006
Messages
47
I am using a form to enter some data. I made a specific report which will be filled with the data of the form. the problem is that I want the user when he completes a form to press the print button and transfered his new entry ONLY to the report so to be able to print it. How can I do this pls.
 
the report has a recordsource of a query correct?

if so, change your query so that the
entryid = forms!yourfrmName.entryid
Entryid is the primary key field of your table that you are storing these entries in
 
Or, in the code to open the report use:
Code:
DoCmd.OpenReport "YourReportNameHere", acViewPreview, , "[entryid]=" & Me![entryid]
 

Users who are viewing this thread

Back
Top Bottom