private void btn_nuevo_Click(object sender, EventArgs e) { // Mostrar formulario CRUD_Empleado F1 = new CRUD_Empleado(); F1.Show(); }
private void button2_Click(object sender, EventArgs e) { // Mostrar formulario CRUD_Empleado CEmpleado = new CRUD_Empleado(); CEmpleado.Show(); }
private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { // Verificar que las filas del datagridview sea diferente de 0 if (e.RowIndex >= 0) { // Definir la filas del datagridview DataGridViewRow row = this.dataGridView1.Rows[e.RowIndex]; // Asociar las variables a las columnas del datagridview CRUD_Empleado.pasarid = row.Cells[0].Value.ToString(); CRUD_Empleado.pasarnombre = row.Cells[1].Value.ToString(); CRUD_Empleado.pasarapellido = row.Cells[2].Value.ToString(); CRUD_Empleado.pasarsexo = row.Cells[3].Value.ToString(); CRUD_Empleado.pasarfecha = row.Cells[4].Value.ToString(); CRUD_Empleado.pasarsalario = row.Cells[5].Value.ToString(); CRUD_Empleado.pasarestatus = row.Cells[6].Value.ToString(); CRUD_Empleado.pasarcedula = row.Cells[7].Value.ToString(); // Mostrar formulario CRUD_Empleado F1 = new CRUD_Empleado(); F1.Show(); } }