Esempio n. 1
0
 private void cmdEDIT_Click(object sender, EventArgs e)
 {
     if (dataGridView1.SelectedCells.Count > 0)
     {
         Guid rowID = (Guid)dataGridView1.SelectedCells[0].OwningRow.Cells["RowID"].Value;
         Master.frmSurveyorUpdate ifrmChild = new Master.frmSurveyorUpdate(this, rowID);
         Program.MainForm.CheckMdiChildren(ifrmChild);
     }
     else
     {
         MessageBox.Show(Messages.Error.RowNotSelected);
     }
 }
Esempio n. 2
0
 private void cmdADD_Click(object sender, EventArgs e)
 {
     Master.frmSurveyorUpdate ifrmChild = new Master.frmSurveyorUpdate(this);
     Program.MainForm.CheckMdiChildren(ifrmChild);
 }