I have a form that allows the user to browse their computer and open a picture. I have a button that they press to display the picture they chose, and with that button I want to save the picture's path/filename to a table called tblPhoto. So far I have this:
Me.Photo = txtPath.Value 'save path name from text box
This works for only a first record, as it overwrites itself if done more than once. How do I insert a new record every time a different picture is displayed? I tried doing a recordset and have failed lol.
Me.Photo = txtPath.Value 'save path name from text box
This works for only a first record, as it overwrites itself if done more than once. How do I insert a new record every time a different picture is displayed? I tried doing a recordset and have failed lol.