FILTRAR CAMPO MEMO

Post Reply
User avatar
Manuel Valdenebro
Posts: 706
Joined: Thu Oct 06, 2005 9:57 pm
Location: Málaga-España

FILTRAR CAMPO MEMO

Post by Manuel Valdenebro »

En un fichero cdx con campos memos ¿como puedo realizar un filtro con una clave de su contenido?

En los otros tipos de campos, el filtro lo realizo mediante un indice:

INDEX ON fichero->NOMBRE for cVariable $ fichero->MATRICULA

Pero esto no funciona con _ memos.

Tambien he intentado con un SET FILTER, pero tampoco me ha funcionado.

¿Alguna idea?
Un saludo

Manuel
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Manuel,

Existe una forma de crear un índice basado en la condición que desees y en donde tu indicas que registros se añaden al índice.

Hemos preguntado en la lista de desarrollo de Harbour para que nos indiquen cual es la forma correcta de usarlo.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Manuel,

Igual que en Clipper 5.3 :-)

INDEX ON ... CUSTOM

CUSTOM specifies that a custom built order will be created for RDDs
that support them. A custom built order is initially empty, giving you
complete control over order maintenance. The system does not
automatically add and delete keys from a custom built order. Instead,
you explicitly add and delete keys using ORDKEYADD() and ORDKEYDEL().
This capability is excellent for generating pick lists of specific
records and other custom applications.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Manuel Valdenebro
Posts: 706
Joined: Thu Oct 06, 2005 9:57 pm
Location: Málaga-España

Post by Manuel Valdenebro »

Antonio,

Ha funcionado perfectamente con INDEX .. CUSTOM y personalizando el indice con ORDKEYADD().

Muchas gracias.
Un saludo

Manuel
Post Reply