this is all back of the envelope coding
problem i have is i need to genereate a report which has a barcode on but we dont have barcode fonts (dont ask) so have used an online tool to generate them all and then have placed the path of each one in a table
so then when the report is run this is what i logical think and would like to happen
Code:
If Location = T_LocationBarcode!Location
AND IF BarcodePath Is Not Null THEN
img_Check_String_Barcode = BarcodePath
End if
but not sure if i would put this in report load or in the control source for the image
thanks for looking
EDIT
After some more searching on ol google i came across this
Code:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Me![Imageframe].Picture = Me![Imagepath]
End Sub
i have replaced the [Imageframe] with my named picture frame and also changed the Me! after the equal to the name of my table
it dosent brake anything but then again dosent display anything either