report Image QR Code on report (1 Viewer)

mhakim

Member
Local time
Today, 13:09
Joined
Jan 25, 2021
Messages
72
i have QR Image ready on my form how to report it on Report
 

June7

AWF VIP
Local time
Today, 02:09
Joined
Mar 9, 2014
Messages
5,472
Maybe the same way you show it on form. Where is the image stored?
 

mhakim

Member
Local time
Today, 13:09
Joined
Jan 25, 2021
Messages
72
i try to link dirct from control properties data source like this
=Forms![FormName]![ImageNameControl]

i tried also to do code like this


Private Sub Report_Current()
Dim picReport As MSACCESS.Image
Dim picForm As MSACCESS.Image
Set picReport = Me!imgQRCodeReport ' Replace "ImageControl" with your report's image control name
Set picForm = Forms![Invoices_or_Sales]![imgQRCode] ' Replace as before
picReport.Picture = picForm.Picture
End Sub

still not showing the QRCODE IMAGE
 

CJ_London

Super Moderator
Staff member
Local time
Today, 11:09
Joined
Feb 19, 2013
Messages
16,612
Not answering the question

I doubt what you are trying would work- looks like AI suggested code

you could try

=Forms![FormName]![ImageNameControl].picture

but without answering the question purely a guess
 

mhakim

Member
Local time
Today, 13:09
Joined
Jan 25, 2021
Messages
72
Not answering the question

I doubt what you are trying would work- looks like AI suggested code

you could try

=Forms![FormName]![ImageNameControl].picture

but without answering the question purely a guess
goog thank you
 

June7

AWF VIP
Local time
Today, 02:09
Joined
Mar 9, 2014
Messages
5,472
Load image from folder or include in RecordSource table that has image in Attachment field.

How do you have image on form?
 

Users who are viewing this thread

Top Bottom