hi
i want to update the data in the table based on the changes done on the form by using vb.net
like if user click on yes it will be stored in the table
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Hirendra SisodiyaPosted Jul 23, 2010, 7:39 AM
use messagebox with if statement like this
If (MessageBox.Show("Do you want to update this data", "", MessageBoxButtons.YesNo, MessageBoxIcon.Question)) = Windows.Forms.DialogResult.Yes Then
//Write your query for updating data
End If
thanks
Please mark as answer if it helps