private void btnNuevoCuarto_Click(object sender, EventArgs e) { int cuartonuevo = 0; LucySpa.Cuartos.frmCuartos NuevoCuarto = new Cuartos.frmCuartos(cuartonuevo, this); NuevoCuarto.ShowDialog(); }
private void btnModificarCuarto_Click(object sender, EventArgs e) { Cuartos.frmCuartos VentanaCUartos = new Cuartos.frmCuartos(intNumCuarto, this); intNumCuarto = 0; VentanaCUartos.ShowDialog(); }
private void btnModificar_Click(object sender, EventArgs e) { int cuartoID; DataGridViewRow filaSeleccionada = dgvCuartos.SelectedRows[0]; cuartoID = (int)filaSeleccionada.Cells[0].Value; LucySpa.Cuartos.frmCuartos NuevoCuarto = new Cuartos.frmCuartos(cuartoID, this); NuevoCuarto.ShowDialog(); }
private void btnAgregarCuarto_Click(object sender, EventArgs e) { intNumCuarto = 0; Cuartos.frmCuartos VentanaCuartos = new Cuartos.frmCuartos(intNumCuarto, this); VentanaCuartos.ShowDialog(); }