Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Windows Forms application wherein controls on a form are databound. I have a picturebox which is intended to display an image from the database (SQL Server). There is an option to change the image (upload a new image instead).

I have databound the picturebox to the image in the bindingsource, and the form displays the stored Image into the picturebox. Upload mechanism works as well.

The problem is data-binding the Image to picturebox makes the HasChanges() in DataSet true, without a new upload.

How can I make HasChanges() return true only when the Image is changed by the user (provided all other fields remain unmodified)?

share|improve this question
You may need to call the AcceptChanges method yourself. – jhewlett Mar 16 at 6:24
I don't understand. When/where should I call AcceptChanges()? Can you enunciate a bit further? – pvv140 Mar 17 at 2:04
After you bind the DataTable, since you know there have been no changes yet, you can call AcceptChanges. This will cause HasChanges to return false until something really changes in the table. – jhewlett Mar 17 at 5:19

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.