I have a table with 4 Image fields. I put a pictureBox and in the Data properties, in DataBindings, linkei it with one of the table fields, the image1 field, while executing the program is bringing right the image of the image1 field of the table. So it can make changes, draw or delete, and when you click save, it will save the changes in the table field to which "image1" is linked.
How do I do the user, when I click a button, change which table field this pictureBox is linked to? For example, if you click on button 2, the pictureBox shows the image that is in the image2 field of the table, and any changes made, when you click save, will already save in "image2".
I'm using the local visual studio database, just dragging and dropping the fields from the "DataSources" panel. I do not use any sql code.