Access-size problem

  • Thread starter Thread starter Nick
  • Start date Start date
N

Nick

Can I bound a picture with a field as a link without to
transfer the picture in the database in order to avoid the
big size but at the same time I want to be able to see
automaticly in our report or forms my pictures?
 
You can use an Image control and set the .Picture (I beleive that that's the
property) value of that control at runtime:

me.imjYourPicture.Picture = "C:\CSComputers\Images\YourImage.jpg"
 
Back
Top