Search found 235 matches: bskip

Return to advanced search

Re: Counter in report.

Hello, then try using bstratLine, bStratREcord, bSkip nLine := 0 REPORT oReport COLUMN nLine..... oReport:bSkip := {|| nLine++ , ...... dbf->( DBSKIP() )} or oReport:bStartLine := {|| nLine++ } or oReportbStarRecord := {|| nLine++ } I think some ...
by Marcelo Via Giglio
Sun Feb 06, 2011 9:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Counter in report (revisited).
Replies: 18
Views: 2939

buscar la primera letra en un listobx

... ) OF Dialogo size 15,110 pixel oLbX:bGoTop = { || nCur := 1 } oLBX:bGoBottom = { || nCur := Len( EMPRE ) } oLbX:bSkip = { | nSkip | Skipper( EMPRE, @nCur, nSkip ) } // con array oLbX:bLogicLen := { || LEN(EMPRE) } oLbX:cAlias := "Array" oLbX:bKeydown ...
by QAZWSX2K
Fri Jan 21, 2011 8:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: buscar la primera letra en un listobx
Replies: 4
Views: 856

Re: Aplicaciones Multiidioma

... oLbx:nAt, 1 ] , ; aMat[ oLbx:nAt, 2 ] ; } } oLbx:bGoTop := { || oLbx:nAt := 1 } oLbx:bGoBottom := { || oLbx:nAt := Eval( oLbx:bLogicLen ) } oLbx:bSkip := { | nWant, nOld | nOld := oLbx:nAt, oLbx:nAt += nWant, ; oLbx:nAt := Max( 1, Min( oLbx:nAt, Eval( oLbx:bLogicLen ) ) ), ; oLbx:nAt - nOld } ...
by MdaSolution
Mon Dec 13, 2010 10:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Aplicaciones Multiidioma
Replies: 7
Views: 1423

Re: xBrowse – memofields

... := .T.   oBrw:CreateFromCode()   oWnd:oClient := oBrw      ACTIVATE WINDOW oWndRETURN NIL  For the first approach, I've defined a new 'bSkip', trying to set the colors dynamically, but it doesn't work correctly! Just try it and you'll see what I mean:   oBrw:bSkip  := { | nSkip, ...
by frose
Sun Nov 28, 2010 4:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse – memofields
Replies: 18
Views: 5318

Re: xBrowse Drag & Drop Question

Pete: Also, I saved the row in the browse cargo: oBrw:bSkip := { | nSkip, nOld | ; iif(nSkip == nil, nSkip := 1, ),; nOld := oBrw:nArrayAt,; oBrw:nArrayAt += nSkip,; oBrw:nArrayAt := Min( Max( oBrw:nArrayAt, 1 ), len( oBrw:aArrayData ) ),; oBrw:cargo ...
by Randal
Thu Nov 25, 2010 5:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Drag & Drop Question
Replies: 4
Views: 1236

Detectar Cambio de Grupo

... + oPagos:FieldGetByName('usu_nombre'); Footer "Total Recadudado Por "+SubStr(oReport:aGroups[2]:cValue,11,30) END REPORT oReport:bSkip := {||oPagos:skip(1) } oReport:nTitleUpLine := RPT_SINGLELINE oReport:nTitleDnLine := RPT_SINGLELINE oReport:nTotalline := RPT_NOLINE oReport:nGroupLine ...
by cmarucco
Thu Nov 25, 2010 1:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Detectar Cambio de Grupo
Replies: 1
Views: 594

Re: Error Xbrowse

... RECORDSET oRS, ¿en los xbrowse no es necesario pasar los...? oBrw:bGoTop := {|| 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, ...
by nageswaragunupudi
Wed Nov 10, 2010 3:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error Xbrowse
Replies: 4
Views: 1018

Re: Error Xbrowse

... RECORDSET oRS, ¿en los xbrowse no es necesario pasar los...? oBrw:bGoTop := {|| 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, ...
by goosfancito
Tue Nov 09, 2010 2:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error Xbrowse
Replies: 4
Views: 1018

Re: create and use an index for a set of records

... array. The next simplest would be to create a database class that has a modified skip() method that uses the array as an index. The set the oBrw:bSkip codeblock to use this database skip method. The most complicated way would be to write functions to work with standard DBF commands that use the ...
by James Bott
Mon Aug 02, 2010 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: create and use an index for a set of records
Replies: 10
Views: 2184

Re: Necesito un calendario.

... ID 103 OF oDlf COLOR RGB( 68, 90,155) oBrf:bGotop :={|| nSem:=MIN(EVAL(oBrf:bLogicLen),1)} oBrf:bGoBottom :={|| nSem:=EVAL(oBrf:bLogicLen)} oBrf:bSkip :={| nWant,nOld | nold:=nSem, nSem+=nWant,; nSem:=MAX(1, MIN(nSem,EVAL(oBrf:bLogicLen))),nSem-nOld} oBrf:lAdjLastCol:=.F. oBrf:bLogicLen :={|| ...
by jbrita
Thu Jul 29, 2010 4:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Necesito un calendario.
Replies: 2
Views: 1248

Re: twbrowse+mysql utilizando recordset é possivel

... ={.F.,.F.,.f.,.f.,.f.} oLbx:bLogicLen = { || oRs:RecordCount } oLbx:bGoTop = { || oRs:MoveFirst() } oLbx:bGoBottom = { || oRs:MoveLast() } oLbx:bSkip = { | nSkip | Skipper( oRs, nSkip ) } oLbx:cAlias = "ARRAY" REDEFINE BUTTON ID 102 OF oDlg ACTION( EditC1(.t.,oLbx ), oLbx:Refresh() ...
by Ramon Paredes
Mon Jul 26, 2010 11:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: twbrowse+mysql utilizando recordset é possivel
Replies: 12
Views: 5060

Re: Comments and requests about TWBrowse

... read during the repainting. And you can disable() or LockWindowUpdate() the control and test it that way too. You will also see evidence that bSkip does have something to do with refreshing a browse. James // Test disabled TWBrowse for painting while disabled.// Use with FWH\samples\customer.dbf ...
by James Bott
Fri Jul 23, 2010 1:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Comments and requests about TWBrowse
Replies: 58
Views: 14063

Re: Comments and requests about TWBrowse

... 12 07/22/10 14:38:37: 14 13 07/22/10 14:38:37: 14 14 07/22/10 14:38:37: 14 15 that is looking fine to me. Anyway, I don't know why you are using bSkip codeblock that has nothing to do with browse refresh. EMG
by Enrico Maria Giordano
Thu Jul 22, 2010 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Comments and requests about TWBrowse
Replies: 58
Views: 14063

Re: Comments and requests about TWBrowse

... SET INDEX TO customer define window oWnd title "Test Browse" define buttonbar oBar of oWnd @ 0 , 0 listbox oLbx fields of oWnd oLbx:bSkip:= {|nRecs| ( logfile( "events.txt" , { oLbx:nRowCount() , recno() } ), customer->(dbskipper( nRecs)) ) } oWnd:oClient:= oLbx activate ...
by MarcoBoschi
Thu Jul 22, 2010 12:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Comments and requests about TWBrowse
Replies: 58
Views: 14063

Re: Comments and requests about TWBrowse

Enrico, James, I put this line of code in a my application oBrw:bSkip:= {|nRecs| ( logfile( "eventi.txt" , { oBrw:nRowCount() , recno() } ), tabella->(dbskipper( nRecs)) ) } tabella.dbf has 11400 records it's about 9 MB tabella.cdx has 20 TAG ...
by MarcoBoschi
Thu Jul 22, 2010 8:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Comments and requests about TWBrowse
Replies: 58
Views: 14063
PreviousNext

Return to advanced search