Ejemplo n.º 1
0
        private void toolAdd_Click(object sender, EventArgs e)
        {
            FormAgentRecordInput formAgentRecordInput = new FormAgentRecordInput();

            formAgentRecordInput.Tag   = "Add";
            formAgentRecordInput.Owner = this;
            formAgentRecordInput.ShowDialog();
        }
Ejemplo n.º 2
0
 private void toolAmend_Click(object sender, EventArgs e)
 {
     if (dgvAgentRecord.RowCount > 0)
     {
         FormAgentRecordInput formAgentRecordInput = new FormAgentRecordInput();
         formAgentRecordInput.Tag   = "Edit";
         formAgentRecordInput.Owner = this;
         formAgentRecordInput.ShowDialog();
     }
 }