Search found 235 matches: bskip

Return to advanced search

Re: Browse Json

... display it in TCBrowse. I played around with setting oBrw:cAlias := "ARRAY" but get no data. Not sure how to set the bGoTop, bGoBottom, bSkip, bLogicLen blocks. For now I am creating a dynamic recordset from the json object, but I feel like it is an extra step. Thanks, again...
by byron.hopp
Thu Jan 11, 2024 1:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Browse Json
Replies: 8
Views: 838

Re: Effect Pjama on Treport ( from Xbrowse)

...  oRep:bStartLine := { || oRep:lShadow := (oRep:nCounter % 2 != 0)  }    // oReport:bSkip := {|| ( oRs:SKIP(), IF(oRep:nCounter % 2 = 0, oRep:lShadow := .F., oRep:lShadow := .T. ) ) }   oRep:bPostEnd   := { || oRep:Say( 1, ...
by Silvio.Falconi
Thu May 11, 2023 6:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Effect Pjama on Treport ( from Xbrowse)
Replies: 5
Views: 310

Re: Effect Pjama on Treport ( from Xbrowse)

...  oRep:bStartLine := { || oRep:lShadow := (oRep:nCounter % 2 != 0)  }    // oReport:bSkip := {|| ( oRs:SKIP(), IF(oRep:nCounter % 2 = 0, oRep:lShadow := .F., oRep:lShadow := .T. ) ) }   oRep:bPostEnd   := { || oRep:Say( 1, ...
by Silvio.Falconi
Thu May 11, 2023 6:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Effect Pjama on Treport ( from Xbrowse)
Replies: 5
Views: 310

Re: Effect Pjama on Treport ( from Xbrowse)

...  oRep:bStartLine := { || oRep:lShadow := (oRep:nCounter % 2 != 0)  }    // oReport:bSkip := {|| ( oRs:SKIP(), IF(oRep:nCounter % 2 = 0, oRep:lShadow := .F., oRep:lShadow := .T. ) ) }   oRep:bPostEnd   := { || oRep:Say( ...
by mauri.menabue
Wed May 10, 2023 9:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Effect Pjama on Treport ( from Xbrowse)
Replies: 5
Views: 310

bsetup of Report

... have simple and not double lines, a test on the left and the date and page number/pages on the right bSetUp := < |oRep, Brw, n | if n == 2 oRep:bSkip := {|| (IF(!oDbf:Eof(),oDbf:Skip(),nil),; IF(oRep:nCounter % 2 =1 , oRep:lShadow :=.f.,oRep:lShadow :=.t.))} return nil endif return 2 > oBrw:Report("List", ...
by Silvio.Falconi
Wed Apr 26, 2023 9:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bsetup of Report
Replies: 1
Views: 160

Re: Help for xbrowse report bSetUp

Silvio: En el metodo Report de Xbrowse, oRep:bSkip lo sobreescribe con esto: if Len( ::aSelected ) > If( ::lMultiSelect, 1, 0 )       Eval( ::bBookMark, ::aSelected[ 1 ] )       nRows        := Len( ::aSelected ...
by Silvio.Falconi
Sun Mar 19, 2023 9:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for xbrowse report bSetUp
Replies: 3
Views: 390

Re: Help for xbrowse report bSetUp

Silvio: En el metodo Report de Xbrowse, oRep:bSkip lo sobreescribe con esto: if Len( ::aSelected ) > If( ::lMultiSelect, 1, 0 )       Eval( ::bBookMark, ::aSelected[ 1 ] )      ...
by cmsoft
Sun Mar 19, 2023 3:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for xbrowse report bSetUp
Replies: 3
Views: 390

Help for xbrowse report bSetUp

... < |oRep, Brw, n | bImage := {|oRep| oRep:SayBitmap(0.5, 7, cLogo)} bStart := {|oRep| oRep:bStartPage := bImage} bInit := {|| oBrw:oDbf:GoTop()} bSkip := {|| (IF(!oBrw:oDbf:Eof(),oBrw:oDbf:Skip(),nil),IF(oRep:nCounter % 2 =1 , oRep:lShadow :=.f.,oRep:lShadow :=.t.))} if n == 2 oRep:oShdBrush ...
by Silvio.Falconi
Sat Mar 18, 2023 10:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for xbrowse report bSetUp
Replies: 3
Views: 390

Re: Area de trabajo no usada: ORDKEYNO

... ofont1 oBrow:bLogicLen = { || oRS1Cli:RecordCount } oBrow:bGoTop = { || oRS1Cli:MoveFirst() } oBrow:bGoBottom = { || oRS1Cli:MoveLast() } oBrow:bSkip = { | nSkip | Skipper( oRs1Cli, nSkip ) } oBrow:lcellstyle := .f. oBrow:nlinestyle := 2 oBrow:nclrpane := { || iif( ( oRS1Cli:AbsolutePosition ...
by jpcavagnaro
Sun Sep 11, 2022 12:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Area de trabajo no usada: ORDKEYNO
Replies: 3
Views: 334

Re: ListBox Input Field Scrolling........

... } oBrw:bGoTop := { || nItem := 1 } oBrw:bGoBottom := { || nItem := Len(aAcc_No) } oBrw:SetArray( aAcc_No, aAcc_Desc, aTrn_AmtD, aTrn_AmtC ) oBrw:bSkip := { |nWant, nOld| nOld:=nItem, nItem+=nWant, ; nItem := max( 1, min( nItem, eval( oBrw:bLogicLen ))), nItem - nOld } oBrw:bLDblClick:= {|| W_21AEU(oBrw,nItem,mMode,oDlg)} ...
by RiazKhan
Fri Apr 15, 2022 9:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ListBox Input Field Scrolling........
Replies: 2
Views: 257

Exportacíon Excel desde Reporte

... oReport:SetTxtColor(CLR_GREEN,4) oReport:SetPenColor(CLR_HBLUE) oReport:SetShdColor(CLR_YELLOW) oReport:bInit := {|| oTELE0060:GoTop() } oReport:bSkip := {|| oTELE0060:Skip() } If EMPTY(vEntregador) ACTIVATE REPORT oReport ; ON STARTPAGE StartPage(oReport); FOR oTELE0060:A_STATUS60 # 'C' .AND. ...
by danielgustavo
Thu Jun 24, 2021 2:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Exportacíon Excel desde Reporte
Replies: 0
Views: 311

Re: Ayuda con xBrowse

... 2. Please do no use bStrData. 3. You see xbrowse builds your picture formats correctly. 4. Please NEVER directly assign to datas like bGoTop, bSkip, etc. Till you become a GREAT EXPERT of XBrowse, please do not touch them. Please let xbrowse create these codeblocks. 5. Please do not mix xbrowse ...
by FranciscoA
Sat Mar 27, 2021 3:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con xBrowse
Replies: 15
Views: 1872

Re: Ayuda con xBrowse

... 2. Please do no use bStrData. 3. You see xbrowse builds your picture formats correctly. 4. Please NEVER directly assign to datas like bGoTop, bSkip, etc. Till you become a GREAT EXPERT of XBrowse, please do not touch them. Please let xbrowse create these codeblocks. 5. Please do not mix xbrowse ...
by nageswaragunupudi
Sat Mar 27, 2021 1:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con xBrowse
Replies: 15
Views: 1872

Re: conflicto con database

... REDEFINE LISTBOX olbm FIELDS (oDbf:calias) ->NAPE ID 101; ON DBLCLICK (lacepto:= .t.,odlg:end()) of odlg olbm:setfocus() olbm:bSkip := { | nRecs | odbf:Skipper( nRecs ) } 1-Quite esta parte olbm:bSeek := {|lRet| olbm:DbfSeek(.T.) } oLbm:bkeydown := {|nkey,nflags| iif(nKey = ...
by surGom
Thu Oct 24, 2019 1:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: conflicto con database
Replies: 4
Views: 928

Re: A possible MULTIBROWSE of one DBF ? ( test incl. )

... oDBF1 := TDatabase():New(,"cFilename") oDBF1:use() oDBF2 := TDatabase():New(,"cFilename") oDBF2:use() ... Then use oDBF1:bSkip:= {...} to coordinate movements between two browses. James
by James Bott
Mon Aug 26, 2019 4:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A possible MULTIBROWSE of one DBF ? ( test incl. )
Replies: 2
Views: 777
Next

Return to advanced search