Ejemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            frmCustomerAccount custAccount = new frmCustomerAccount();

            custAccount.ShowDialog();
            fillCustomerName();
        }
Ejemplo n.º 2
0
        private void addCustomerAcc_Click(object sender, EventArgs e)
        {
            frmCustomerAccount addCustomerAcc = new frmCustomerAccount();

            addCustomerAcc.ShowDialog();
            this.Close();
        }