Printing forms, differently coloured pages?

tomswaelen

Registered User.
Local time
Today, 12:49
Joined
Nov 13, 2011
Messages
10
I've created a form which stretches across multiple pages. I've noticed that, when I print the form, the odd pages have a white background (as intended), the even pages have a grey/purplish background (which is not as intended, obviously).

My form will use 2 pages max, but when I stretch the form across 4 pages intentionally, pages 1-3 will have a white background, pages 2-4 are grey.

Does anyone know what causes this and how I can disable it?
 
Sounds like the alternate backcolor property is set incorrectly.
 
Sounds like the alternate backcolor property is set incorrectly.


Where do I find this? Bear in mind that I have absolutely no knowledge of VBA code...
 
A form is not really intended for printing. You should be using a report.

I only need to print a specific record, not sets of records. And it needs to be a very specific layout. Can reports be used for that?

Besides the point, anyway.
 
Where do I find this? Bear in mind that I have absolutely no knowledge of VBA code...

No code; it's a property of each section, so check whichever section is doing it. I agree about printing a form by the way; I just assumed it was a report. Reports can certainly print a single record. I often use this technique to limit them:

http://www.baldyweb.com/wherecondition.htm
 
Yes you can print a specific record. Paul (aka pbaldy) has a link on his site that will allow you to that.

You can copy the controls on your form and paste it on a report.
 
No code; it's a property of each section, so check whichever section is doing it. I agree about printing a form by the way; I just assumed it was a report. Reports can certainly print a single record. I often use this technique to limit them:

I found it, thank you. It was buried deep inside some right-mouse-click windows :)
 
I only need to print a specific record, not sets of records. And it needs to be a very specific layout. Can reports be used for that?

Besides the point, anyway.
you can save your form as report
 
Posts #4, #6, and #7 mentions and explains exactly this approach. You didn't read the posts this time :p ;)
I read all posts.
I mean pick the form, use SaveAs... and save as report... No need to copy anything...
 

Users who are viewing this thread

Back
Top Bottom