incremental search with array

Post Reply
marca
Posts: 117
Joined: Mon Aug 13, 2007 5:22 pm
Location: Brazil
Contact:

incremental search with array

Post by marca »

Good morning everyone.
In xbrowse incremental search with array I can't get the customer's name if it starts with *
Ex: * JOAO he disregards *
Is there any way to resolve this?
marca
Posts: 117
Joined: Mon Aug 13, 2007 5:22 pm
Location: Brazil
Contact:

Re: incremental search with array

Post by marca »

nobody ?

Mr Rão
Couldn't you help me with that?
Marcelo Ferro da Silveira
Fwh14.04/xHarbour 1.2.3 Simplex / Bcc582 / Pelles 8
SqlLib /xMate/WS
User avatar
cnavarro
Posts: 6556
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Been thanked: 3 times

Re: incremental search with array

Post by cnavarro »

marca wrote:Good morning everyone.
In xbrowse incremental search with array I can't get the customer's name if it starts with *
Ex: * JOAO he disregards *
Is there any way to resolve this?
Una posible solucion es la siguiente:
Crea una CLASSDATA lAllowAsterics INIT .F. en la clase
y en la linea 3867, sustituye
elseIf nKey > 31 .and. nKey != Asc( '*' ) .and. nKey != Asc( '?' )
por
elseIf nKey > 31 .and. ( nKey != Asc( '*' ) .or. ::lAllowAsterics ) .and. nKey != Asc( '?' )
Al comienzo de tu aplicacion, setea
TXBrowse():lAllowAsterics := .T.
Try and tell me if it works for you
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
marca
Posts: 117
Joined: Mon Aug 13, 2007 5:22 pm
Location: Brazil
Contact:

Re: incremental search with array

Post by marca »

cnavarro
Perfeito. Thanks
Marcelo Ferro da Silveira
Fwh14.04/xHarbour 1.2.3 Simplex / Bcc582 / Pelles 8
SqlLib /xMate/WS
User avatar
cnavarro
Posts: 6556
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Been thanked: 3 times

Re: incremental search with array

Post by cnavarro »

Very good
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Post Reply