/// <summary> /// selects user record for updation and show user form /// </summary> private void BindUpdateUserData() { int selectedrowindex = Mold_dgv.SelectedCells[0].RowIndex; MoldVo selectedMold = (MoldVo)Mold_dgv.Rows[selectedrowindex].DataBoundItem; AddMoldForm newAddForm = new AddMoldForm(); newAddForm.CreateForm(CommonConstants.MODE_UPDATE, selectedMold); 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) { AddMoldForm newAddForm = new AddMoldForm(); newAddForm.CreateForm(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()); } }