insert opbject button

  • Thread starter Thread starter Pierre
  • Start date Start date
P

Pierre

Morning all.
I'm in need of a button code that would allow me to insert an object to a
field [residence picture].

Also an OnClick code that would have that image open in imageviewer. This
should be a yes or no option to view.

As always, any and all comments are appreciated.
 
storing images in a table is not a good idea. The size of an mdb file is
limited to 2Gb and image files are typically fairly large. Putting images in
a table will quickly blow the limit. I recommend you store the images in a
directory and use a field in your table to point to the file.
 
is there a way to have to image dispayed on the form but stored in a folder
on the network drive. And if not, is there a way to change the max size of
the mdb file.
--
Work is sometimes hard....but someone has to do it.


Klatuu said:
storing images in a table is not a good idea. The size of an mdb file is
limited to 2Gb and image files are typically fairly large. Putting images in
a table will quickly blow the limit. I recommend you store the images in a
directory and use a field in your table to point to the file.
--
Dave Hargis, Microsoft Access MVP


Pierre said:
Morning all.
I'm in need of a button code that would allow me to insert an object to a
field [residence picture].

Also an OnClick code that would have that image open in imageviewer. This
should be a yes or no option to view.

As always, any and all comments are appreciated.
 
Back
Top