I am building a database with inventory involved. I have a field in my table called Photo. I have on my form, a text box bound to the photo field. I have a image frame called Img1 in my form. All of this works great.
The problem comes in now where I want to add a control button to the form that will allow the user to navigate to a new image to replace the existing image on that record. They have this in the Northwind sample database on the Employees form. I have tried to copy the code and place it in my form but it doesn't work. I also would like to have it open a default Images folder when the button is selected.
This all I have so far.


Private Sub Form_Current()
Image1.Picture = Path1
End Sub

I am using Access 2003