Printing pages from a tab control

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

Guest

I have a form with multiple graphs imported from Excel that have been
inserted on a tab control. I want to be able to hit print and automatically
print tab 1, then tab 2, then tab3, etc. When I hit print now, the only
pages I get are from tab 1. How can i print underlying tabs?

Thanks,
Matt
 
I have a form with multiple graphs imported from Excel that have been
inserted on a tab control. I want to be able to hit print and automatically
print tab 1, then tab 2, then tab3, etc. When I hit print now, the only
pages I get are from tab 1. How can i print underlying tabs?

Thanks,
Matt

Forms are designed for onscreen use, not for printing. A Tab Control
is designed to do exactly what it's doing: conceal the content of all
but one tab page at a time, so you can see more data on a limited
screen space.

If you want to print all the graphs... don't print a Form. Put them
onto multiple pages of a Report instead; Reports (unlike forms) are
designed to be printed.

John W. Vinson[MVP]
Join the online Access Chats
Tuesday 11am EDT - Thursday 3:30pm EDT
http://community.compuserve.com/msdevapps
 
Back
Top