Esempio n. 1
0
 private void cmdADD_Click(object sender, EventArgs e)
 {
     //if ((_bankID == "")||(_bankNama==""))
     //{
     //    MessageBox.Show("Silahkan pilih Bank terlebih dahulu");
     //} else
     //{
     Master.frmGiroUpdate ifrmChild = new Master.frmGiroUpdate(this);
     ifrmChild.MdiParent = Program.MainForm;
     Program.MainForm.RegisterChild(ifrmChild);
     ifrmChild.Show();
     //}
 }
Esempio n. 2
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.frmGiroUpdate ifrmChild = new Master.frmGiroUpdate(this, rowID);
         ifrmChild.MdiParent = Program.MainForm;
         Program.MainForm.RegisterChild(ifrmChild);
         ifrmChild.Show();
     }
     else
     {
         MessageBox.Show(Messages.Error.RowNotSelected);
     }
 }