Search found 137 matches: bseek

Return to advanced search

Re: need Help with oBro:bSeek

hi,

thx for all Information.

i have to read it which "Keyword" are used
( AUTOSORT, oCol;cSortOrder, oBrw:lIncrSeek, lFastEdit, oBrw:lSeekWild, oBrw:lIncFilter,)
and learn how to use it
by Jimmy
Wed Aug 16, 2023 5:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: need Help with oBro:bSeek
Replies: 3
Views: 215

Re: need Help with oBro:bSeek

can somebody point me to working "increment" Seek :?: Incremental seek works automatically if the programmer does not do anything to disturb the automatic behavior of xbrowse. XBROWSER "any.dbf" AUTOSORT Start clicking on any header and the order is changed and incremental seek ...
by nageswaragunupudi
Wed Aug 16, 2023 4:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: need Help with oBro:bSeek
Replies: 3
Views: 215

need Help with oBro:bSeek

... but *.NTX must be open before ? b.) if *.CDX have TAGs, how to change TAG when click on Header of Column ? c.) what about ADO ? i saw   oBrw:bSeek := { | c | oBrw:AdoIncrSeek( c ) } can i use it on Recordset of Excel ?
by Jimmy
Tue Aug 15, 2023 1:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: need Help with oBro:bSeek
Replies: 3
Views: 215

Re: Error XBROWSE SEEK (while no Index) after change RDD

YES, i have try to SET bSeek to NIL

my "Problem" was that i have many DBF which work with *.NTX which does not "Autopen" Index

Does not matter.
It is not a good idea to disturb XBrowse's internal defaults.
The default bSeek does not harm you when you are browsing DBFNTX dbfs.
by nageswaragunupudi
Mon May 08, 2023 1:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error XBROWSE SEEK (while no Index) after change RDD
Replies: 9
Views: 562

Re: Error XBROWSE SEEK (while no Index) after change RDD

hi, Looks like you set oBrw:bSeek := nil We recommend not to. Instead oBrw:bSeek can be { || .f. } When the dbf is not indexed or not set to any index, the inbuilt bSeek returns .F. YES, i have try to SET bSeek to NIL my "Problem" ...
by Jimmy
Mon May 08, 2023 12:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error XBROWSE SEEK (while no Index) after change RDD
Replies: 9
Views: 562

Re: Error XBROWSE SEEK (while no Index) after change RDD

... Calls =========== Called from: .\source\classes\XBROWSE.PRG => TXBROWSE:SEEK( 9409 ) This error occurred while executing the line Eval( ::bSeek, ... ) Looks like you set oBrw:bSeek := nil We recommend not to. Instead oBrw:bSeek can be { || .f. } When the dbf is not indexed or not set ...
by nageswaragunupudi
Sat May 06, 2023 11:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error XBROWSE SEEK (while no Index) after change RDD
Replies: 9
Views: 562

Function XbrHexEdit() "more" Search

hi, i found Function XbrHexEdit() which can show me HEX Code as it use XBROWSE it have Codeblock bSeek      :bSeek            := { |c,nAt| If( Empty( c ), nAt := 1, nAt := At( Upper( c ), cUpper ) ), ;                           If( ...
by Jimmy
Thu Apr 13, 2023 10:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Function XbrHexEdit() "more" Search
Replies: 2
Views: 308

Re: oBrowse:bSeek and TAB

when got to XBROWSE it "change" Display ...

When XBrowse receives focus, the browse is refreshed. That means, if there is any change in the data, the current data is displayed.
by nageswaragunupudi
Sun Aug 07, 2022 12:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBrowse:bSeek and TAB
Replies: 3
Views: 319

Re: oBrowse:bSeek and TAB

hi,

Thx for Answer.

just can say when press "TAB" to get to next TGET

when got to XBROWSE it "change" Display ...
have not figure out yet "what" is shown (only 1 Record)

p.s. still happens even when use
Code: Select all  Expand view
  oBrw:SetStyle( WS_TABSTOP, .F. )
by Jimmy
Sat Aug 06, 2022 8:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBrowse:bSeek and TAB
Replies: 3
Views: 319

Re: oBrowse:bSeek and TAB

When XBrowse gets focus by whatever way, browse is refreshed and no seek is executed.
Seek is activated only by a kay-stroke and not in any other way.
by nageswaragunupudi
Sat Aug 06, 2022 12:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBrowse:bSeek and TAB
Replies: 3
Views: 319

oBrowse:bSeek and TAB

hi,

when "TAB" (from other Control) into XBROWSE it will "activate Seek" but not bSeek Codeblock itself

how can i avoid "Seek" without type any Sign (a-z, 0-9) :?:
by Jimmy
Sat Aug 06, 2022 6:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBrowse:bSeek and TAB
Replies: 3
Views: 319

Re: XBROWSE and any Key

hi,
nageswaragunupudi wrote:Better you see the bSeek construction inside xbrowse.prg

Yes, you are right, it is all in Source Code

but i must "see" how it work to understand what Code "mean"
so, as FiveWin Newbie, i ask for working Sample
by Jimmy
Mon Aug 01, 2022 5:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE and any Key
Replies: 9
Views: 701

Re: XBROWSE and any Key

Jimmy wrote:hi,

have found c:\fwh\samples\testxbrw.prg
Code: Select all  Expand view
oBrw:bSeek            := {|c| DbSeek( Upper( c ) ) }

seems easy to use ...

Better you see the bSeek construction inside xbrowse.prg
by nageswaragunupudi
Mon Aug 01, 2022 8:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE and any Key
Replies: 9
Views: 701

Re: XBROWSE and any Key

bSeek is automatically generated by XBrowse internally, depending on the type of database (i.e., array,dbf,tdbf,ado, etc.)
Better not to attempt preparing our own bSeek.
by nageswaragunupudi
Sun Jul 31, 2022 4:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE and any Key
Replies: 9
Views: 701
Next

Return to advanced search