示例#1
0
        private void btnAcceptPayment_Click(object sender, EventArgs e)
        {
            //Instantiate and show the form to accept payments
            frmPayment NewPayment = new frmPayment();

            NewPayment.ShowDialog();
        }
示例#2
0
 private void btnAcceptPayment_Click(object sender, EventArgs e)
 {
     //Instantiate and show the form to accept payments
     frmPayment NewPayment = new frmPayment();
     NewPayment.ShowDialog();
 }