示例#1
0
 private void btn_cliente_Click(object sender, EventArgs e)
 {
     try
     {
         Cliente_Admin c = new Cliente_Admin();
         c.ShowDialog();
     }
     catch (Exception ex)
     {
         Ventana_Error ve = new Ventana_Error(ex);
         ve.ShowDialog();
     }
 }
 private void btn_ver_clientes_Click_1(object sender, EventArgs e)
 {
     Cliente_Admin ca = new Cliente_Admin(true);
     ca.ShowDialog();
 }
示例#3
0
        private void btn_ver_clientes_Click_1(object sender, EventArgs e)
        {
            Cliente_Admin ca = new Cliente_Admin(true);

            ca.ShowDialog();
        }
示例#4
0
        private void btn_cliente_Click(object sender, EventArgs e)
        {
            try
            {
                Cliente_Admin c = new Cliente_Admin();
                c.ShowDialog();
            }
            catch (Exception ex)
            {
                Ventana_Error ve = new Ventana_Error(ex);
                ve.ShowDialog();

            }
        }