Search found 76 matches: keycount

Return to advanced search

Re: records on xbrowse

oDbf:OrdKeyCount() ) This works only for oDbf. Using oBrw:nLen or oBrw:KeyCount() works for all datasources. ok but the button are not refreshed , only when I move the mouse into obrw for a sample WHEN ( oBrw:nDataRows <= ...
by Silvio.Falconi
Tue Mar 26, 2024 12:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 1672

Re: records on xbrowse

oDbf:OrdKeyCount() )


This works only for oDbf.
Using oBrw:nLen or oBrw:KeyCount() works for all datasources.
by nageswaragunupudi
Tue Mar 26, 2024 12:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 1672

Re: RAO advice on using Mysql

METHODS: RecCount(), LastRec(), KeyCount(),RecNo(), KeyNo() GoTop(),GoBottom(),GoTo(nRec),KeyGoTo(nKey),Skip(n) FCount(),FieldPos(c),FieldName(),FieldLen(),FieldDec(),FieldType() FieldGet(),FieldPut() SetOrder(cSort,,lDescend) Save() Close() ...
by nageswaragunupudi
Fri Feb 02, 2024 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 973

Re: Clase database y ordScope

Estimado Carlos,

Muchas gracias por el recordatorio :-)

Sí, existe el método en la Clase TDatabase:

METHOD KeyCount() INLINE ( ::cAlias )->( OrdKeyCount() )

oDbf:KeyCount()
by Antonio Linares
Sun Jan 15, 2023 7:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase database y ordScope
Replies: 5
Views: 484

Msgbar Error

... .... ::oBarProgress:SetPos( ::oBarProgress:nPos + 1 ) ::oTabItem1:SetText( tran(::oBarProgress:nPos,'999999')+" di "+; tran(::oDbf:KeyCount(),'999999')) ::oWinTabellone:oMsgBar:Refresh() ::oDbf:Skip(-1) Enddo It seem not refresh the text on msgitem How I can resolve ?
by Silvio.Falconi
Fri May 27, 2022 9:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Msgbar Error
Replies: 2
Views: 263

Re: Help with ascan

... you will ever get. Antonio, I not understood If I make number:= 34 cFilter := "oDbf:Ba1=" +number oDbf:setFilter(cFilter) nFreq:= oDbf:keycount() It immediately gives me the frequency value in fast mode for 1 number Is it possible that if I do a search for 90 numbers it will take a ...
by Silvio.Falconi
Fri May 13, 2022 8:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help with ascan
Replies: 16
Views: 914

ORDKEYNO ERROR

... 0 ) Llamado desde: .\source\classes\XBROWSE.PRG => (b)TXBROWSE( 505 ) Llamado desde: .\source\classes\XBROWSE.PRG => TXBROWSE:KEYCOUNT( 0 ) Llamado desde: .\source\classes\XBROWSE.PRG => TXBROWSE:REFRESH( 1698 ) Llamado desde: .\wincredi.prg => (b)CREDITOS( 347 ) saludo ...
by rterraz
Tue Jan 25, 2022 2:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ORDKEYNO ERROR
Replies: 2
Views: 348

DBCMD/2001 Workarea not in use: ORDKEYNO

... 0 ) Llamado desde: .\source\classes\XBROWSE.PRG => (b)TXBROWSE( 505 ) Llamado desde: .\source\classes\XBROWSE.PRG => TXBROWSE:KEYCOUNT( 0 ) Llamado desde: .\source\classes\XBROWSE.PRG => TXBROWSE:REFRESH( 1698 ) Llamado desde: .\wincredi.prg => (b)CREDITOS( 343 ) Llamado ...
by mterraz
Thu Jan 20, 2022 2:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: DBCMD/2001 Workarea not in use: ORDKEYNO
Replies: 3
Views: 363

Re: xbrowse fwh2006 sqlrdd erro

... you very much. That means the application program closed the dbf, even before xbrowse is destroyed. So, when the xbrowse got focus, the method KeyCount() is executed and the alias is not in use anymore. Mr. Sistem Can you please make this modification and try again? METHOD SQLRDD_SaveState() ...
by nageswaragunupudi
Thu Jul 16, 2020 7:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse fwh2006 sqlrdd erro
Replies: 24
Views: 2922

Re: xbrowser footer

oBrw:KeyCount() is the same as ( oBrw:cAlias )->( OrdKeyCount() ) OrdKeyCount() is a (x)Harbour function. By default OrdKeyCount() respects Scopes and Filters but includes deleted records also. This is what we all should ...
by wartiaga
Tue Dec 03, 2019 2:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser footer
Replies: 9
Views: 1339

Re: xbrowser footer

oBrw:KeyCount() is the same as ( oBrw:cAlias )->( OrdKeyCount() ) OrdKeyCount() is a (x)Harbour function. By default OrdKeyCount() respects Scopes and Filters but includes deleted records also. This is what we all should ...
by nageswaragunupudi
Mon Dec 02, 2019 5:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser footer
Replies: 9
Views: 1339

Re: xbrowser footer

Hello, Why this: Lista2:aCols[1]:cFooter := { || Ltrim( Str( Lista2:KeyNo() ) ) + " / " + LTrim( Str( Lista2:KeyCount() ) ) } Lista2:Refresh() Show me {||...} in footer? Thanks in advance. Use this Lista2:aCols[1]:bFooter   := { || Ltrim( Str( Lista2:KeyNo() ...
by wartiaga
Mon Dec 02, 2019 1:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser footer
Replies: 9
Views: 1339

Re: xbrowser footer

Hello, Why this: Lista2:aCols[1]:cFooter := { || Ltrim( Str( Lista2:KeyNo() ) ) + " / " + LTrim( Str( Lista2:KeyCount() ) ) } Lista2:Refresh() Show me {||...} in footer? Thanks in advance. Use this Lista2:aCols[1]:bFooter   := { || Ltrim( Str( Lista2:KeyNo() ...
by cnavarro
Mon Dec 02, 2019 1:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser footer
Replies: 9
Views: 1339

xbrowser footer

Hello,

Why this:

Lista2:aCols[1]:cFooter := { || Ltrim( Str( Lista2:KeyNo() ) ) + " / " + LTrim( Str( Lista2:KeyCount() ) ) }
Lista2:Refresh()

Show me {||...} in footer?

Thanks in advance.
by wartiaga
Mon Dec 02, 2019 12:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser footer
Replies: 9
Views: 1339

Re: xBrowse error on ADS

... from: => TXBROWSE:VUPDATEPOS( 0 ) Called from: .\source\classes\XBROWSE.PRG => (b)TXBROWSE:TXBROWSE( 497 ) Called from: => TXBROWSE:KEYCOUNT( 0 ) Called from: .\source\classes\XBROWSE.PRG => TXBROWSE:ADJUST( 1426 ) Called from: .\source\classes\XBROWSE.PRG => TXBROWSE:INITIATE( ...
by ryugarai27
Sat Sep 01, 2018 5:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse error on ADS (SOLVED!)
Replies: 12
Views: 2729
Next

Return to advanced search