Search found 49 matches: beof

Return to advanced search

Re: Xbrowse : Setup configuration file

... " ACTION ::SELECT(0) end if ::nMarqueeStyle == MARQSTYLE_HIGHLROW MENUITEM "双击鼠标,本行拖入单据主表" ACTION EVAL(::BLDBLClick) WHEN !EVAL(::beof()) end if ::bkeydown<>nil.and.::nMarqueeStyle==MARQSTYLE_HIGHLCELL MENUITEM "添加新行 Insert" ACTION EVAL(::bkeydown,VK_INSERT) WHEN ...
by ShumingWang
Sat Apr 17, 2021 12:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Setup configuration file
Replies: 5
Views: 1215

Re: New FTDN May 2018 (FWH 18.05)

... properly supports the vertical scrollbar: http://forums.fivetechsupport.com/viewtopic.php?p=213460#p213460 * function SummaryDataAsTree( bSkip, bEof, aGroups, bCargo ) in trees.prg enhanced. Can be used to automatically create a tree object from any sorted datasource. Mainly used as support ...
by Antonio Linares
Sun Jul 22, 2018 5:01 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May 2018 (FWH 18.05)
Replies: 1
Views: 2757

New FTDN May 2018 (FWH 18.05)

... properly supports the vertical scrollbar: http://forums.fivetechsupport.com/viewtopic.php?p=213460#p213460 * function SummaryDataAsTree( bSkip, bEof, aGroups, bCargo ) in trees.prg enhanced. Can be used to automatically create a tree object from any sorted datasource. Mainly used as support ...
by Antonio Linares
Sat Jul 14, 2018 4:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN May 2018 (FWH 18.05)
Replies: 1
Views: 2757

Re: Test for Vertical Scroll hits EOF xBrowse ( rao )

Rao Interesting idea ... however ... I only want the AddNewRow() to fire when arrow down hits bEof .. when a user scrolls down the vertical bar .. they hit the bEof code block multiple times ..same for the mouse wheel and I end up with a mess. If there was only a way to ...
by Rick Lipkin
Sat Jan 20, 2018 4:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Test for Vertical Scroll hits EOF xBrowse ( rao )
Replies: 14
Views: 6032

TDatabase FWH 17.08 : Datas and Methods

... UserEdit( oRec ) } If assigned, used to edit current/new record with ::Record() object as parameter. See ::Record() and ::Edit() methods. 6. bEoF ( Type: "B" ): If assigned, executes when EOF() is true 7. bNetError ( Type: "B" ): Optional. If assigned, evaluated when record ...
by nageswaragunupudi
Fri Sep 15, 2017 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase FWH 17.08 : Datas and Methods
Replies: 1
Views: 1782

Re: txbrowse - Workarea not in use ??

... )->( DbGoBottom() ) },; ::bSkip := {| n | ( ::cAlias )->( DbSkipper( IfNil( n, 1 ) ) ) },; ::bBof := {|| ( ::cAlias )->( Bof() ) },; ::bEof := {|| ( ::cAlias )->( Eof() ) },; ::bBookMark := {| n | iif( n == nil .or. n == 0 ,; ( ::cAlias )->( RecNo() ) ,; ( ::cAlias )->( DbGoto( ...
by russimicro
Wed May 11, 2016 8:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: txbrowse - Workarea not in use ??
Replies: 7
Views: 1985

Re: Clase TDb o TDatabase....cual usar?

... CLASS TDb DATA nArea AS NUMERIC INIT 0 DATA lBuffer DATA lShared AS LOGICAL INIT .t. DATA aBuffer DATA bBoF, bEoF, bNetError AS CODEBLOCK DATA cAlias, cFile, cDriver AS String INIT "" DATA lReadOnly AS LOGICAL INIT .f. DATA lOemAnsi DATA lTenChars ...
by Compuin
Thu Feb 28, 2013 6:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase TDb o TDatabase....cual usar?
Replies: 10
Views: 2795

Re: xBrowse array and move to a specific row

... := Min( Max( ::nArrayAt, 1 ), Eval( ::bKeyCount ) ), ; Eval( ::bOnSkip, Self ), ; ::nArrayAt - nOld }, ; ::bBof := { || ::nArrayAt < 1 }, ; ::bEof := { || ::nArrayAt > Eval( ::bKeyCount ) }, ; ::bBookMark := { | n | If( n == nil, ::nArrayAt, ; ( ::nArrayAt := n, Eval( ::bOnSkip, Self ), ...
by joseluisysturiz
Wed Feb 27, 2013 10:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse array and move to a specific row
Replies: 5
Views: 1320

Re: error en xDev studio

Perdón

(oSal:BEOF()) := {|| nil}
by surGom
Thu Sep 20, 2012 12:00 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: error en xDev studio
Replies: 3
Views: 453

Re: error en xDev studio

Encontré unos scripts en el directorio de xdev studios, uno fivewinxcompiler y los estoy modificando. con los nuevos archivos..

Esto va para largo

oSal:BEOF() := {|| nil} para poder compilarlo lo comente, si saben como hay que ponerlo puede ser así:

(oSal:BEOF() := {|| nil})

Luis
by surGom
Wed Sep 19, 2012 11:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: error en xDev studio
Replies: 3
Views: 453

error en xDev studio

Otra consulta al compilar con xDevstudio, en esta línea :

oSal:BEOF() := {|| nil}

me da el error Valor Inválido

Siempre lo utilizé así en xharbour y no hubo problemas al compilar

Luis
by surGom
Wed Sep 19, 2012 10:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: error en xDev studio
Replies: 3
Views: 453

Re: Deshabilitar Boton en Dialogo

Bayron puedes usar los codeblock bBof y bEof de la clase TDolphinQry DATA bBof,;        //codeblock to evaluate if the value is the first row         bEof,;        //codeblock to ...
by Daniel Garcia-Gil
Sun Aug 14, 2011 4:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Deshabilitar Boton en Dialogo
Replies: 7
Views: 1631

Re: Error Xbrowse

... := {|| rs:moveFirst() } oBrw:bGoBottom := {|| rs:moveLast() } oBrw:bSkip := {| n | rsSkipper( n, rs ) } oBrw:bBof := {|| rs:Bof() } oBrw:bEof := {|| rs:Eof() } oBrw:bBookMark := {| bmNew | IIF( bmNew == NIL, rs:bookMark, rs:bookMark := bmNew) } oBrw:bKeyNo := {|| rs:AbsolutePosition } ...
by nageswaragunupudi
Wed Nov 10, 2010 3:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error Xbrowse
Replies: 4
Views: 999

Re: Error Xbrowse

... := {|| rs:moveFirst() } oBrw:bGoBottom := {|| rs:moveLast() } oBrw:bSkip := {| n | rsSkipper( n, rs ) } oBrw:bBof := {|| rs:Bof() } oBrw:bEof := {|| rs:Eof() } oBrw:bBookMark := {| bmNew | IIF( bmNew == NIL, rs:bookMark, rs:bookMark := bmNew) } oBrw:bKeyNo := {|| rs:AbsolutePosition } ...
by goosfancito
Tue Nov 09, 2010 2:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error Xbrowse
Replies: 4
Views: 999

xbrowse y tmysql

... oDlg ) oLBX:SetRDD() oLbx:CreateFromResource( 107 ) // setxbrowse( oLbx, oQry ) //William clase tymsql /*/ oLbx:bBof := { || oQry:Bof() } oLbx:bEof := { || oQry:Eof() } oLbx:bBookMark :={ | n | if( n == nil, oQry:RecNo(), oQry:GoTo( n ) ) } oLbx:bKeyNo := { || oQry:RecNo() } oLbx:bKeyCount ...
by surGom
Sun Jun 20, 2010 9:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse y tmysql
Replies: 2
Views: 913
Next

Return to advanced search