Exemplo n.º 1
0
        //button event for 'Exisiting' button
        private void btnExisting_Click(object sender, EventArgs e)
        {
            //create instance of form
            frmExistingCustomer Existing = new frmExistingCustomer();

            //display form
            Existing.Show();
        }
Exemplo n.º 2
0
 //button event for 'Exisiting' button
 private void btnExisting_Click(object sender, EventArgs e)
 {
     //create instance of form
     frmExistingCustomer Existing = new frmExistingCustomer();
     //display form
     Existing.Show();
 }