bmp files within form

P

Patrick Stubbin

I have a table with a hyperlink data type for one field

to reduce storage space this is how i have stored the picture, however, can
i, on a form, automatically display the contents of the file rather than the
hyperlink address in a field?
 
C

Carl Rapson

Patrick,

What you'll want to do is add an unbound Image control to your form. Then,
in the Form_Current event, set the Picture property of the Image control to
the .bmp file name.

Carl Rapson
 
Top