コード例 #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();
        }
コード例 #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();
 }