I have several Access reports that contain embedded graphics (NOT linked - OLE unbound). They will manually print fine from the dropdown menu. When I print them fom code using the printer object the graphics are omitted.
In the following code, strReportCode has been populated
with a valid report name, and acViewDesign and acViewPreview behave the same:
Anyone have a fix for this? All Access XP SPs are current.
Thanks!
Outside of a dog, a book is man's best friend. Inside of a dog it's too dark to read.
In the following code, strReportCode has been populated
with a valid report name, and acViewDesign and acViewPreview behave the same:
Code:
Public prt As Printer
DoCmd.OpenReport strReportCode, acViewDesign
Set prt = Reports(strReportCode).Printer
DoCmd.PrintOut
DoCmd.Close ObjectType:=acReport, _ ObjectName:=strReportCode, Save:=acSaveNo
Set prt = Nothing
Anyone have a fix for this? All Access XP SPs are current.
Thanks!
Outside of a dog, a book is man's best friend. Inside of a dog it's too dark to read.