private void btnBuscar_Click(object sender, EventArgs e) { Listado_Empleados lm = new Listado_Empleados(); lm.ShowDialog(); if (lm.DialogResult == DialogResult.OK) { txtcodigoE.Text = lm.Tabla_Empleados.Rows[lm.Tabla_Empleados.CurrentRow.Index].Cells[0].Value.ToString(); txtdpi.Text = lm.Tabla_Empleados.Rows[lm.Tabla_Empleados.CurrentRow.Index].Cells[1].Value.ToString(); txtnombreMaestro.Text = lm.Tabla_Empleados.Rows[lm.Tabla_Empleados.CurrentRow.Index].Cells[2].Value.ToString(); } }
private void btnBuscarEncargado_Click(object sender, EventArgs e) { Listado_Empleados le = new Listado_Empleados(); le.ShowDialog(); if (le.DialogResult == DialogResult.OK) { txtCodigo.Text = le.Tabla_Empleados.Rows[le.Tabla_Empleados.CurrentRow.Index].Cells[0].Value.ToString(); txtempleado.Text = le.Tabla_Empleados.Rows[le.Tabla_Empleados.CurrentRow.Index].Cells[2].Value.ToString(); txtpuesto.Text = le.Tabla_Empleados.Rows[le.Tabla_Empleados.CurrentRow.Index].Cells[5].Value.ToString(); txtdpi.Text = le.Tabla_Empleados.Rows[le.Tabla_Empleados.CurrentRow.Index].Cells[1].Value.ToString(); } }
private void Btn_All_Users_Click(object sender, EventArgs e) { Listado_Empleados ventanalistadoempleados = new Listado_Empleados(); ventanalistadoempleados.Show(); }