private void mnuSignUp_Click(object sender, EventArgs e)
        {
            this.Hide();

            frmSignUpCustomer nextForm = new frmSignUpCustomer(this);

            nextForm.Show();
        }
Ejemplo n.º 2
0
 public frmTopUp(frmSignUpCustomer frmSignUpCustomer)
 {
     InitializeComponent();
     parent = frmSignUpCustomer;
 }