S
SF
Hi,
I have a create a report for printing ID. In the report I have an Image
control that would take the photopath from a photopath field.
I put the following code in the On Current event of the report
If IsNull(Me.Photo) Then
Me.Image5.Picture =
"S:\General\LAAR\Database\Photos\no_photo_available_large.png"
Else
Me.Image5.Picture = Me.Photo
End If
When I view the report, there is no photo display.
What is wrong with my code
SF
I have a create a report for printing ID. In the report I have an Image
control that would take the photopath from a photopath field.
I put the following code in the On Current event of the report
If IsNull(Me.Photo) Then
Me.Image5.Picture =
"S:\General\LAAR\Database\Photos\no_photo_available_large.png"
Else
Me.Image5.Picture = Me.Photo
End If
When I view the report, there is no photo display.
What is wrong with my code
SF