private void btnSet_Click(object sender, EventArgs e) { modeGetRDGValues = MODE_GET_RDG_VALUES.DISPLAY; getDataGridViewAdmin(); ASUTP.Helper.Errors resultSaving = m_admin.SaveChanges(); if (resultSaving == ASUTP.Helper.Errors.NoError) { ClearTables(); m_admin.GetRDGValues(/*(int)m_admin.m_typeFields,*/ m_listTECComponentIndex[comboBoxTecComponent.SelectedIndex], mcldrDate.SelectionStart); } else { if (resultSaving == ASUTP.Helper.Errors.InvalidValue) { MessageBox.Show(this, "Изменение ретроспективы недопустимо!", "Внимание", MessageBoxButtons.OK, MessageBoxIcon.Asterisk); } else { MessageBox.Show(this, "Не удалось сохранить изменения, возможно отсутствует связь с базой данных.", "Ошибка сохранения", MessageBoxButtons.OK, MessageBoxIcon.Error); } } }
private void btnRefresh_Click(object sender, EventArgs e) { modeGetRDGValues = MODE_GET_RDG_VALUES.DISPLAY; ClearTables(); m_admin.GetRDGValues(/*(int)m_admin.m_typeFields,*/ m_listTECComponentIndex[comboBoxTecComponent.SelectedIndex], mcldrDate.SelectionStart); }