示例#1
0
        // ***************************************************************************

        // ***************************************************************************
        // Rejects all pending changes
        private void ButtonReject_Click(object sender, System.EventArgs e)
        {
            m_dataInstance.RejectChanges();
            CurrentData.Refresh();
        }
示例#2
0
 // ***************************************************************************
 // Save all the manual changes to the DataSet
 private void ButtonSave_Click(object sender, System.EventArgs e)
 {
     CurrentData.Update();
     CurrentData.Refresh();
 }