Search found 137 matches: bseek

Return to advanced search

Re: Busqueda contenido xBrowse..

http://fivetechsupport.com/forums/viewtopic.php?f=6&t=27148

(4) Nueva DATA lSeekWild. Si es puesta a .T., bSeek usa OrdWildSeek en lugar de un Seek normal.

Saludos.
by karinha
Thu Aug 28, 2014 1:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Busqueda contenido xBrowse..(Cerrado)
Replies: 15
Views: 3253

Re: Seek en consulta dolphin

... se queda en in lopp y produce un error, lo mismo pasa cuando la columna es de tipo caracter y tipeo un numero. Probe comentando la linea obrw:bSeek para que tome el codeblock por defecto del xbrowse y alli solo ordena pero no acepta los valores que tipeo, es decir no funciona. La tabla tiene ...
by albeiroval
Mon May 26, 2014 3:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Seek en consulta dolphin
Replies: 8
Views: 1965

Re: Which event to display latest value of cSeek IN XBROWSE ?

... automatically updates the SAY. oBrw:cSeek is updated only after successful seek and refresh. If you want to know the value prior to seek, oBrw:bSeek := { |cSeek| MsgInfo( cSeek ), .... yourseekfunc( cSeek ) }
by nageswaragunupudi
Mon Nov 25, 2013 8:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Which event to display latest value of cSeek IN XBROWSE ?
Replies: 15
Views: 3910

Re: Simple xBrowse edit ?

...        := {|| oBrw:oDbf:GoTop() }      < other lines like this>      :bSeek         := { |c| oBrw:oDbf:Seek( c, , oBrw:lSeekWild ) }   END  Please insert this line after ...
by nageswaragunupudi
Thu Oct 24, 2013 5:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Simple xBrowse edit ?
Replies: 10
Views: 2544

Re: xBrowse con Tdatabase mal en 1307

... OBJECT oBrw      :oDbf          := oDbf      :bGoTop        := {|| oBrw:oDbf:GoTop() }      < other lines like this>      :bSeek         := { |c| oBrw:oDbf:Seek( c, , oBrw:lSeekWild ) }   END  Please insert this line after :bSeek := .... and END   :bSaveData ...
by nageswaragunupudi
Sun Oct 20, 2013 2:11 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse con Tdatabase mal en 1307 - Solucionado
Replies: 9
Views: 3344

Re: xBrowse con Tdatabase mal en 1307

... When created with COLUMNS clause, xbrowse automatically decides picture clause, correct index tag for sorting, bonpostedit codeblock, bseek for incremental seeks, etc. It is not necessary to specify oCol:cSortOrder, oCol:bOnPostEdit. It is also not necessary to keep changing default ...
by nageswaragunupudi
Sat Oct 19, 2013 5:28 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse con Tdatabase mal en 1307 - Solucionado
Replies: 9
Views: 3344

Re: xBrowse - Búsqueda incremental - Agregado

... en mayúscula. Si el teclado no está en mayúsculas, con esta reforma también realiza la búsqueda incremental. Not necessary. XBrowse's built-in bSeek takes care of this. This is a part of built-in bSeek         lFound   := DbSeek( Upper( cExpr ) ) .or. ...
by nageswaragunupudi
Sun Sep 08, 2013 5:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse - Búsqueda incremental - Agregado (No hace falta)
Replies: 2
Views: 586

XBROWSE BUSQUEDA INCREMENTAL

... n := 1 to 6 oBtn[n]:nClrPane = RGB(0,0,0) Next REDEFINE GET oGet VAR cNom ID 171 OF oDlg oGet:bKeyDown := { | nKey | KeyChar( oLbx, nKey ) } oLbx:bSeek := nil oLbx:bKeyChar := { |nKey| KeyChar( oLbx, nKey ) } ACTIVATE DIALOG oDlg NOWAIT ON INIT (oDlg:Move(0,0)) ACTIVATE WINDOW oWnd VALID Eval({|| ...
by Luis
Thu Sep 05, 2013 2:59 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE BUSQUEDA INCREMENTAL
Replies: 6
Views: 3097

Re: xBrowse ascending order

... * from custm1 order by custid"+if(corder=="A"," desc","") ::odb1:refresh() ::obrow:refresh() ::obrow:bseek:={|v|::odb1:SEEK(v,,{||::odb1:custid})} ::obrow:SEEK(id1) case nAt==3 id1:=::odb1:custm ::odb1:cQuery:="select * from custm1 order by custm"+if(corder=="A"," ...
by ShumingWang
Thu Aug 08, 2013 3:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ascending order
Replies: 8
Views: 2284

New FTDN June/Junio 2013 (FWH 13.06)

... Delete. In particular demonstrates the simplest way of using AddNew(), Update() and GetRows() methods of ADO * XBrowse: In the method SetRDD(), bSeek codeblock is created only if the programmer did not already specified bSeek codeblock before calling SetRdd. This is to provide backward compatibility ...
by Antonio Linares
Mon Jul 08, 2013 6:53 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2013 (FWH 13.06)
Replies: 1
Views: 3018

Re: xBrowse, bSeek y lAutoOrder

Thanks for your recommendation to use SetRDD before assigning DATA or codeblocks, that solves the problem due after executing SetRDD I can change the codeblocks, and Initiate will not run again SetRdd. That is how XBrowse is intended to be used. Any further developments assume xbrowse is used the w...
by nageswaragunupudi
Mon Jul 01, 2013 12:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse, bSeek y lAutoOrder
Replies: 3
Views: 1419

Re: xBrowse, bSeek y lAutoOrder

Hi, many thanks for your answer. Thanks for your recommendation to use SetRDD before assigning DATA or codeblocks, that solves the problem due after executing SetRDD I can change the codeblocks, and Initiate will not run again SetRdd. After reviewing the xBrowse class, another alternative is to defi...
by Biel EA6DD
Mon Jul 01, 2013 9:23 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse, bSeek y lAutoOrder
Replies: 3
Views: 1419

Re: xBrowse, bSeek y lAutoOrder

... the program, XBrowse at the time of initializing by default calls SetRdd(), but this is not recommended. As you suggested, we are now creating ::bSeek in SetRDD method as DEFAULT (from version 13.06) to take care of above situations. Still our advice is to use command syntax to create xbrowse ...
by nageswaragunupudi
Mon Jul 01, 2013 7:05 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse, bSeek y lAutoOrder
Replies: 3
Views: 1419

xBrowse, bSeek y lAutoOrder

... xBrowse, y allí encontre el problema. El problema es que en mi funciíon hago uso de una busqueda incremental personalizada, que asigo al DATA bSeek, pero este DATA se sobreescribe siempre en el metodo SetRdd, que se llama siempre desde el metodo initiate. Antes habia un if, que hoy aparece ...
by Biel EA6DD
Fri Jun 28, 2013 2:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse, bSeek y lAutoOrder
Replies: 3
Views: 1419
PreviousNext

Return to advanced search