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?
FILTRAR CAMPO MEMO
- Manuel Valdenebro
- Posts: 706
- Joined: Thu Oct 06, 2005 9:57 pm
- Location: Málaga-España
FILTRAR CAMPO MEMO
Un saludo
Manuel
Manuel
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
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.
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.
- Manuel Valdenebro
- Posts: 706
- Joined: Thu Oct 06, 2005 9:57 pm
- Location: Málaga-España