Report Printing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a query that requests a parameter value for a field in a report, (it
needs a length of time for a training course which is variable), so when I
click the print report button I get the parameter box up [Length of course]

When I've put the length in the report will print, obviously, but I want two
copies, if I put in the print command twice (which I've done lol) I have to
enter the length in again to get the second copy to print.

What I need is to print two copies yet only put the parameter in once. Help
lol

Thanks

Mike
 
The PrintOut Method allows you to specify the number of copies to be
printed. Try open the Report in PrintPreview mode (acIcon if you don't want
to show the Report on screen), use PrintOut to print the required copies and
then Close the Report.
 
Thank you, however I don't know the acIcon command, how do I use this?

Van T. Dinh said:
The PrintOut Method allows you to specify the number of copies to be
printed. Try open the Report in PrintPreview mode (acIcon if you don't want
to show the Report on screen), use PrintOut to print the required copies and
then Close the Report.

--
HTH
Van T. Dinh
MVP (Access)




Inept_Dragon said:
I have a query that requests a parameter value for a field in a report, (it
needs a length of time for a training course which is variable), so when I
click the print report button I get the parameter box up [Length of course]

When I've put the length in the report will print, obviously, but I want two
copies, if I put in the print command twice (which I've done lol) I have to
enter the length in again to get the second copy to print.

What I need is to print two copies yet only put the parameter in once. Help
lol

Thanks

Mike
 
It is not a command.

Check Access VB Help on the OpenReport Method paying particular attention to
the different options / arguments. acIcon is a possible value for the
WindowMode argument.
 
Back
Top