private void btnModificar_Click(object sender, EventArgs e)
        {
            if (!string.IsNullOrEmpty(txtNombreServicio.Text) == false)
            {
                MessageBox.Show("Llene todos los campos obligatorios");
                return;
            }

            if (!string.IsNullOrEmpty(txtprecio.Text) == false)
            {
                MessageBox.Show("Llene todos los campos obligatorios");
                return;
            }

            if (Base_de_datos.validarServicioMod(txtNombreServicio.Text, txtCodigo.Text) == 0)
            {
                MessageBox.Show("Servicio ya existente");
                return;
            }

            String estado;

            if (cmbestado.Text == "Activo")
            {
                estado = "ACT";
            }

            else
            {
                estado = "DSC";
            }

            Base_de_datos.Actualizar_Servicio(int.Parse(txtCodigo.Text), txtNombreServicio.Text.ToUpper(), txtDescripcion.Text.ToUpper(), txtprecio.Text, estado);
            Base_de_datos busc = new Base_de_datos();

            busc.BuscarServicio();
            dataGridView1.DataSource = busc.Mostrar_Resultados();
            MessageBox.Show("Modificado con exito");
            txtCodigo.Clear();
            txtNombreServicio.Clear();
            txtprecio.Clear();
            txtDescripcion.Clear();

            btnModificar.Enabled = false;
            this.Hide();
        }