Adding Pictures to forms

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

Guest

I am making a database for our companys accidents. I have a form for
Employees on that form I have to command buttons one for accidents one for
injuries. When you click on the one for accidents it will tell you all
information about any accidents that employee has had. I want a command
button on that form to take me to picutres of the accidnet. I added them to
an employees form but the same pictures keep coming up on all employees
forms. I tried adding pictures to the table but there are just to many per
accident to put on there. If anyone could help with this I would appreciate
it.
 
It's best not to store images in a table. A better solution is to store
the images as files and store the file location in your table. When you
click the button, look up the file name and set the image control's
picture porpoerty to the name of the file.

HTH,
Barry
 
Back
Top