insert pictures onto form

  • Thread starter Thread starter brandon8201
  • Start date Start date
B

brandon8201

Guest
I'm working on a project that will allow a user to select year, make, and model of a vehicle. I would also like for the user to view the selected vehicle but I am not sure how to do so. Any help would be appreciated. Thanks!
 
Brandon, I have never needed to do this, but this is what i would try.

Set up an image control on your form which will hold the picture.

When the user selects make and model, they would click a 'View' button, whose 'On Click' event would change the picture property to whichever picture was to be shown.

Sub xxx_Click()
me.myImage.Picture = "path to image"
me.myImage.visible = true
..
End Sub

Hope it helps..
 

Users who are viewing this thread

Back
Top Bottom