private void botonConsultaAceptar(Object sender, EventArgs e)
        {
            //Comando de SQL
            MySqlCommand comando = conexion.CreateCommand();

            id = int.Parse(consulta.dataSet.CurrentRow.Cells[2].Value.ToString());
            comando.CommandText          = "SELECT cuentas_descripcion FROM plan_cuentas WHERE (cuentas_id = " + id + ")";
            ventana.txtSeleccionado.Text = consulta.dataSet.CurrentRow.Cells[0].Value.ToString();
            try
            {
                conexion.Open();
                Mensaje.Mostrar(2, "Cargado al libro provisorio");
            }
            catch (Exception ex)
            {
                string mensaje = "Error en la conexion \n Excepcion: " + ex.Message;
                Mensaje.Mostrar(0, mensaje);
                throw;
            }
            MySqlDataReader reader = comando.ExecuteReader();

            conexion.Close();
            consulta.Close();
        }