Hello, when I print preview a report if the report contains pictures they display. However, if I use DoCmd.SendObject acReport, stDocName to attach the report to an email the pictures do not render on the report. The pictures are linked and not in the database. On the report I populate the images with the following code.
Why do the images appear when I print the report but not when the report is an attachment to an email?
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)DefaultFilePath = GetDefaultFilePath If Me!txt_Picture1 > "" Then Me!Picture1.Picture = DefaultFilePath & Me!txt_Picture1 End If If Me!txt_Picture2 > "" Then Me!Picture2.Picture = DefaultFilePath & Me!txt_Picture2 End If If Me!txt_Picture3 > "" Then Me!Picture3.Picture = DefaultFilePath & Me!txt_Picture3 End IfEnd Sub
Again, what output format are you specifying?
Because you left this argument blank in your code, it should popup and ask you for the format...
...In any even, when I select "PDF" as the output format, the images display fine in the resulting, attached PDF file...
0
Squarespace’s all-in-one platform gives you everything you need to express yourself creatively online, whether it is with a domain, website, or online store. Get started with your free trial today, and when ready, take 10% off your first purchase with offer code 'EXPERTS'.
Squarespace’s all-in-one platform gives you everything you need to express yourself creatively online, whether it is with a domain, website, or online store. Get started with your free trial today, and when ready, take 10% off your first purchase with offer code 'EXPERTS'.
With the functions here, you can parse, convert, and format back and forth between feet and inches and fractions and decimal inches - for normal as well as extreme values and with extreme precision.
Polish reports in Access so they look terrific. Take yourself to another level. Equations, Back Color, Alternate Back Color. Write easy VBA Code. Tighten space to use less pages. Launch report from a menu, considering criteria only when it is filled…
With just a little bit of SQL and VBA, many doors open to cool things like synchronize a list box to display data relevant to other information on a form. If you have never written code or looked at an SQL statement before, no problem! ... give i…