Hum, if it displays while previewing the report..and then you go file->print
(while STILL viewing the report)...it should work.
Perhaps you accident set the text box to not visible?
Perhaps the text box needs to be enlarged. Try making the text box MUCH
wider....(just for testing).
Perhaps the font is a color..and you inkjet colors (except for black) have
run out??
Do you have a pdf printer....can you print to that...and see what happens?

Signature
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada
pleaseNOOSpamKallal@msn.com
http://www.members.shaw.ca/AlbertKallal
Sky Warren - 07 Apr 2005 23:15 GMT
Hi Al,
I traced the problem back to the code for the Combo Box where selections are
made. The line that says " Me.ProductType = Null " caused the printing
problem. Once I removed that line, everything prints correctly including any
variable data passed from the form.
Here's the code in question:
Private Sub ProductType_AfterUpdate()
DoCmd.OpenReport "Product Type", acViewPreview
DoCmd.Maximize
RunCommand acCmdFitToWindow
Me.ProductType = Null
End Sub
Thanks Al for your time. I feel silly not figuring this out sooner :-(
-Sky
> Hum, if it displays while previewing the report..and then you go file->print
> (while STILL viewing the report)...it should work.
[quoted text clipped - 8 lines]
>
> Do you have a pdf printer....can you print to that...and see what happens?