Could someone help find out why do both MS ACCESS Datasource and DGView loose data after insert then restart the application using the following code:
Me.MyTableAdapter.Insert(Me.TextBox1.Text, Me.TextBox2.Text, Me.TextBox3.Text)
Me.MyTableAdapter.Fill(Me.MyDataSet.MyTable)
Me.SaveButton.PerformClick()
It actually happens when I restart my application, but everything looks fine at runtime.