Ejemplo n.º 1
0
        private void createTransactionValuesForm(string transactionType)
        {
            Transaction_Value transValueForm = new Transaction_Value(this, formName, transactionType);

            this.deposit_button.Checked = false;
            this.withdraw_button.Checked = false;
            this.transfer_button.Checked = false;

            this.Hide();
            transValueForm.Show();
        }
 public Transaction_Accepted(Transaction_Value parent, string accountWithAccept)
 {
     InitializeComponent();
     this.transValueParent = parent;
     this.acceptedAccount = accountWithAccept;
 }