/// <summary> /// selects user record for updation and show user form /// </summary> private void BindUpdateCavityData() { int selectedrowindex = Cavity_dgv.SelectedCells[0].RowIndex; CavityVo cavInVo = (CavityVo)Cavity_dgv.Rows[selectedrowindex].DataBoundItem; AddCavityForm newAddForm = new AddCavityForm(CommonConstants.MODE_UPDATE, cavInVo); newAddForm.ShowDialog(this); if (newAddForm.IntSuccess > 0) { messageData = new MessageData("mmci00002", Properties.Resources.mmci00002, null); logger.Info(messageData); popUpMessage.Information(messageData, Text); GridBind(FormConditionVo()); } else if (newAddForm.IntSuccess == 0) { messageData = new MessageData("mmci00007", Properties.Resources.mmci00007, null); logger.Info(messageData); popUpMessage.Information(messageData, Text); GridBind(FormConditionVo()); } }
/// <summary> /// event to open the add screen /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected virtual void Add_btn_Click(object sender, EventArgs e) { AddCavityForm newAddForm = new AddCavityForm(CommonConstants.MODE_ADD, null); newAddForm.ShowDialog(); if (newAddForm.IntSuccess > 0) { messageData = new MessageData("mmci00001", Properties.Resources.mmci00001, null); logger.Info(messageData); popUpMessage.Information(messageData, Text); GridBind(FormConditionVo()); } }