private void Empleado_contratados_Load(object sender, EventArgs e)//ventana { Foto_fashion.Hide(); DataTable dt = new DataTable(); string consulta = "Select E.IDEMPLEADO,DNI,NOMBRE,APELLIDO1,APELLIDO2,DIRECCION,EMAIL,OBSERVACIONES,CONVERT (VARCHAR,FECHA_INICIO,103) AS FECHA_INICIO, CONVERT (VARCHAR,FECHA_FINAL,103) AS FECHA_FINAL,SEXO,TELEFONO1,TELEFONO2 from empleado as E join telefonos_empleado on E.IDEMPLEADO= TELEFONOS_EMPLEADO.IDEMPLEADO"; //consulta que hacemos para el boton donde elegimos dt = Conexion.Conectar(consulta); //se le pone la variable consulta que tendra datalistado.DataSource = dt; }
private void Cliente_registrado_Load(object sender, EventArgs e)//ventana { Foto_fashion.Hide(); DataTable dt = new DataTable(); string consulta = "Select c.idcliente,DNI,nombre,apellido1,apellido2,direccion,EMAIL,observaciones,telefono1,telefono2 from cliente as c join telefono_cliente on c.idcliente =telefono_cliente.idcliente;"; dt = Conexion.Conectar(consulta); datalistado.DataSource = dt; }
private void Limpiar_Click(object sender, EventArgs e) { //esta es la manera de limpiar // textBox_ID.Text = ""; textBox_clave.Text = ""; comboBox1_nombre.Text = ""; textBox_permisos.Text = ""; dataGridView1.DataSource = (""); Foto_fashion.Show(); }
private void Buscar_Click(object sender, EventArgs e) { Foto_fashion.Hide(); if (comboBox_busqueda.Text != "")//se usa para que el boton buscar no funcione cuando no tenga nada { DataTable dt = new DataTable(); string consulta = "Select " + comboBox_busqueda.Text + " from usuario;"; //consulta que hacemos para el boton donde elegimos dt = Conexion.Conectar(consulta); //se le pone la variable consulta que tendra dataGridView1.DataSource = dt; } Foto_fashion.Hide(); }
private void Button1_Click(object sender, EventArgs e) { Foto_fashion.Hide(); }
private void Clear_registro_empleado_Click(object sender, EventArgs e) //limpiar { Foto_fashion.Show(); }
private void Buscar_registro_cliente_Click(object sender, EventArgs e) { Foto_fashion.Hide(); }