how do I view a jpg in a bound object control

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there no way to use a bound object control to view JPGs embedded in a
database? I can use the image control and execute code to position the image
source to the correct place in the database, but it seems clumsy when there
are custom made controls to display images, they just do not seem to support
JPGs
 
hi,
the image control in my access data base displays jpgs.
I have a table with the file path to the picture. i have a
form that i can enter the pic name. click a button and the
pic is dispalyed. all are jpgs.

Me.Image1.Picture = DLookup _
("[filepath]", "Pictable", "[id] ='" & Me.Text0 & "'")
 
Back
Top