Discussion:
How do I set up a report in Access to duplex print?
(too old to reply)
Marella
2006-10-16 23:02:02 UTC
Permalink
I have a report that I need to print duplex automatically when the control to
print the report is clicked. Does anyone know how I can set up the report to
default to duplex?

Thanks!
Jeff Boyce
2006-10-16 23:31:55 UTC
Permalink
Maybe I'm overlooking something, but I was under the impression that duplex
printing is a function of the printer, not the application. Do you have a
duplex printer?

Regards

Jeff Boyce
Microsoft Office/Access MVP
Post by Marella
I have a report that I need to print duplex automatically when the control to
print the report is clicked. Does anyone know how I can set up the report to
default to duplex?
Thanks!
Lorenzo
2006-10-25 23:03:02 UTC
Permalink
Jeff, you are quite correct in assessing that duplex printing is a function
of the printer. However, if Access prepares a multicolumn report and the
user would like a book fold duplex printed report, the way to get it is not a
question of the printer capability. For example the 1st coumn of page 1
would be column 1 of the Access report and the 2nd column would be the last
column of the Access report so that when it is printed on a duplex printer,
the back side would have the 1st column be the 2nd column of the Acccess
report and the 2nd column would be the next to last column of the Access
report. I too have the same request. Is there any easy way to accomplish this
or do I have to go through exporting to Excel and then moving pages around
and then importing from Ecel back to Access?
--
Thanks for your help.
Post by Jeff Boyce
Maybe I'm overlooking something, but I was under the impression that duplex
printing is a function of the printer, not the application. Do you have a
duplex printer?
Regards
Jeff Boyce
Microsoft Office/Access MVP
Post by Marella
I have a report that I need to print duplex automatically when the control to
print the report is clicked. Does anyone know how I can set up the report to
default to duplex?
Thanks!
Marella
2006-10-26 15:11:02 UTC
Permalink
My duplex issue isn't quite as complex as yours, but I think we both need
basically the same answer. I just have a two page report that I would like to
print on only one sheet of paper.

Yes, Jeff, it is a printer capability, and I could request the report to
open and give me the printer properties to select duplex, but I am hoping to
have it do it automatically when the print control is selected.

Thanks!
Post by Lorenzo
Jeff, you are quite correct in assessing that duplex printing is a function
of the printer. However, if Access prepares a multicolumn report and the
user would like a book fold duplex printed report, the way to get it is not a
question of the printer capability. For example the 1st coumn of page 1
would be column 1 of the Access report and the 2nd column would be the last
column of the Access report so that when it is printed on a duplex printer,
the back side would have the 1st column be the 2nd column of the Acccess
report and the 2nd column would be the next to last column of the Access
report. I too have the same request. Is there any easy way to accomplish this
or do I have to go through exporting to Excel and then moving pages around
and then importing from Ecel back to Access?
--
Thanks for your help.
Post by Jeff Boyce
Maybe I'm overlooking something, but I was under the impression that duplex
printing is a function of the printer, not the application. Do you have a
duplex printer?
Regards
Jeff Boyce
Microsoft Office/Access MVP
Post by Marella
I have a report that I need to print duplex automatically when the control to
print the report is clicked. Does anyone know how I can set up the report to
default to duplex?
Thanks!
Marty
2006-10-26 20:39:02 UTC
Permalink
Hi Marella,

I know that this isn't the VBA corner of the community, but if you have a
little experience writing VBA routines you might look into the Printer object
(which was new to Access 2002). I haven't tried it out yet, but the object
has a Duplex property. Just looking at the documentation, it can be set to
one of the following constants:
acPRDPHorizontal
acPRDPSimplex
acPRDPVertical.

Hope that helps.
Post by Marella
My duplex issue isn't quite as complex as yours, but I think we both need
basically the same answer. I just have a two page report that I would like to
print on only one sheet of paper.
Yes, Jeff, it is a printer capability, and I could request the report to
open and give me the printer properties to select duplex, but I am hoping to
have it do it automatically when the print control is selected.
Thanks!
Post by Lorenzo
Jeff, you are quite correct in assessing that duplex printing is a function
of the printer. However, if Access prepares a multicolumn report and the
user would like a book fold duplex printed report, the way to get it is not a
question of the printer capability. For example the 1st coumn of page 1
would be column 1 of the Access report and the 2nd column would be the last
column of the Access report so that when it is printed on a duplex printer,
the back side would have the 1st column be the 2nd column of the Acccess
report and the 2nd column would be the next to last column of the Access
report. I too have the same request. Is there any easy way to accomplish this
or do I have to go through exporting to Excel and then moving pages around
and then importing from Ecel back to Access?
--
Thanks for your help.
Post by Jeff Boyce
Maybe I'm overlooking something, but I was under the impression that duplex
printing is a function of the printer, not the application. Do you have a
duplex printer?
Regards
Jeff Boyce
Microsoft Office/Access MVP
Post by Marella
I have a report that I need to print duplex automatically when the control to
print the report is clicked. Does anyone know how I can set up the report to
default to duplex?
Thanks!
Marella
2006-10-27 03:00:02 UTC
Permalink
Thank you for the tip. I have Access 2003. I don't have much VBA experience,
just enough to make me dangerous, but I will see what I can figure out.

Thanks again!
Post by Marty
Hi Marella,
I know that this isn't the VBA corner of the community, but if you have a
little experience writing VBA routines you might look into the Printer object
(which was new to Access 2002). I haven't tried it out yet, but the object
has a Duplex property. Just looking at the documentation, it can be set to
acPRDPHorizontal
acPRDPSimplex
acPRDPVertical.
Hope that helps.
Post by Marella
My duplex issue isn't quite as complex as yours, but I think we both need
basically the same answer. I just have a two page report that I would like to
print on only one sheet of paper.
Yes, Jeff, it is a printer capability, and I could request the report to
open and give me the printer properties to select duplex, but I am hoping to
have it do it automatically when the print control is selected.
Thanks!
Post by Lorenzo
Jeff, you are quite correct in assessing that duplex printing is a function
of the printer. However, if Access prepares a multicolumn report and the
user would like a book fold duplex printed report, the way to get it is not a
question of the printer capability. For example the 1st coumn of page 1
would be column 1 of the Access report and the 2nd column would be the last
column of the Access report so that when it is printed on a duplex printer,
the back side would have the 1st column be the 2nd column of the Acccess
report and the 2nd column would be the next to last column of the Access
report. I too have the same request. Is there any easy way to accomplish this
or do I have to go through exporting to Excel and then moving pages around
and then importing from Ecel back to Access?
--
Thanks for your help.
Post by Jeff Boyce
Maybe I'm overlooking something, but I was under the impression that duplex
printing is a function of the printer, not the application. Do you have a
duplex printer?
Regards
Jeff Boyce
Microsoft Office/Access MVP
Post by Marella
I have a report that I need to print duplex automatically when the control to
print the report is clicked. Does anyone know how I can set up the report
to
default to duplex?
Thanks!
Continue reading on narkive:
Loading...