Exemplo n.º 1
0
 private void ShowEditForm(CUSTOMER pv)
 {
     if (pv != null)
     {
         CustomerEdit pro = new CustomerEdit(pv, this);
         pro.Show();
     }
 }
Exemplo n.º 2
0
        private void NewEditForm()
        {
            CustomerEdit pro = new CustomerEdit(null, this);

            pro.Show();
        }