Search found 25 matches: lshadow

Return to advanced search

Re: Effect Pjama on Treport ( from Xbrowse)

... 999,999,999.99" SHADOW    oRep:oShdBrush  := TBrush():New(,nRgb(219,229,241))   oRep:bStartLine := { || oRep:lShadow := (oRep:nCounter % 2 != 0)  }    // oReport:bSkip := {|| ( oRs:SKIP(), IF(oRep:nCounter % 2 = 0, oRep:lShadow := .F., oRep:lShadow ...
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

bsetup of Report

... 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", nil, nil, bSetup) these lines give me error source\Pcomuni.prg(349) ...
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

... := ( Eval( oBrw:bSkip, n ) != n ) }   endif  Por eso es que la linea oRep:bSkip := {|oRep| IF(oRep:nCounter % 2 =1 , oRep:lShadow :=.f.,oRep:lShadow :=.t.) } No tiene efecto the bskip it make right because I made If empty(aColumns) aColsReport:= oBrw:aCols else aColsReport ...
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

... oBrw:bSkip, n ) != n ) }   endif  Por eso es que la linea oRep:bSkip := {|oRep| IF(oRep:nCounter % 2 =1 , oRep:lShadow :=.f.,oRep:lShadow :=.t.) } No tiene efecto
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: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 := TBrush():New(,nRgb(219,229,241)) oRep:bInit := bInit oRep:bSkip := bSkip oRep:bStartPage ...
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

Report class : colorize rows RESOLVED

how to simulate the pajama effect in oReport printing?

I allready tried this

ACTIVATE REPORT oReport ON STARTLINE AEval( oReport:aColumns, { | o | o:lShadow := ! o:lShadow } )

but not run

I mean one line yes and one no, not all rows
by Silvio.Falconi
Fri Mar 17, 2023 10:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report class : colorize rows RESOLVED
Replies: 7
Views: 503

Re: Efecto Pijama en PRINT

Muchas gracias estimado Antonio

ACTIVATE REPORT oReport ON STARTLINE AEval( oReport:aColumns, { | o | o:lShadow := ! o:lShadow } )
y cómo se aplica para el PRINT

Code: Select all  Expand view

 PRINT oPrn NAME "DETALLE DE MOVIMIENTOS" PREVIEW
 


Gracias por la ayuda
by acuellar
Mon Dec 05, 2022 11:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Efecto Pijama en PRINT
Replies: 6
Views: 438

Re: Efecto Pijama en TReport

Tienes que usar la claúsula SHADOW en cada columna donde lo vayas a usar y:

ACTIVATE REPORT oReport ON STARTLINE AEval( oReport:aColumns, { | o | o:lShadow := ! o:lShadow } )
by Antonio Linares
Fri Nov 11, 2022 8:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Efecto Pijama en TReport
Replies: 4
Views: 545

Re: report with tdatabase condition - resolved !!

Corrected

ACTIVATE REPORT ::oReport WHILE !::oPrenota:eof() ;
ON STARTLINE ::oReport:aColumns[ 3 ]:lShadow:= ! Empty( ::oPrenota:DATAPAYED )
by Silvio.Falconi
Sun May 02, 2021 4:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Re: report with tdatabase condition - resolved !!
Replies: 5
Views: 802

Re: report with tdatabase condition

Silvio,

Try it this way:

COLUMN oCol TITLE "CLIENTE " DATA ::oPrenota:GUEST SHADOW

ACTIVATE REPORT ... ON STARTLINE oCol:lShadow := ! Empty( ::oPrenota:datapayed )
by Antonio Linares
Sat May 01, 2021 7:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Re: report with tdatabase condition - resolved !!
Replies: 5
Views: 802

Re: Strange Error ORDBAGNAME with fwh 19.05

... command RptAddColumn( {bTitulo(::aTitulos,i)},,{bCampo(::aCampos,i)},::aWidth[i],{bPicture(::aPicture,i)},{||1},::aTotal[i],,upper(::aAlign[i]),::lshadow,::lGrid,) the function bCampo(::aCampos,i) function bCampo( aCampos, nFor ) return (fieldWBlock(aCampos[nFor],SELECT() )) why not return the ...
by Silvio.Falconi
Tue Jun 25, 2019 11:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange Error ORDBAGNAME with fwh 19.05
Replies: 2
Views: 492

Re: TO Cristobal

Try with parameters nOffY and nOffX

MessageToast( nType, cText, cBmp, nWidth, nHeight, oWnd, nClrPane, nClrPane2, ;
nClrText, nLev, nTime, lUp, bRet, lLeftP, lAlert, lShadow, ;
nOffY, nOffX, nFont )
by cnavarro
Wed Jan 16, 2019 10:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TO Cristobal
Replies: 7
Views: 1126

New FTDN April/Abril 2018 (FWH 18.04)

... in: METHOD NewToast( nType, cText, cBmp, nWidth, nHeight, oWnd, nClrPane, nClrPane2, ; nClrText, nLev, nTime, lUp, bRet, lLeftP, lAlert, lShadow, ; nOffY, nOffX, nFont ) CLASS TToast - Modified to allow include alert message in parent dialog o window ( oWnd parameter ) - Others aesthetic ...
by Antonio Linares
Mon Jun 04, 2018 6:34 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2018 (FWH 18.04)
Replies: 1
Views: 2171

Re: Modifying tGroup class

... ; GRADIENT TEXTALIGN 1 COLORTEXT CLR_RED SHADOW you must try with all parameters lGradient := false or true lBorder:= false or true lShadow:= false or true for default is good noshadow and nogradient Please use this release I add your modifies !!! Tgroupex.ch #xcommand @ <nTop>, ...
by Silvio.Falconi
Mon May 15, 2017 3:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Modifying tGroup class
Replies: 15
Views: 2922

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

... ::nLblAtcol Labels for column :nLblHSep Horizontal separation ::nLblVSep Vertical separation ::lGrid if there is Grid ::nPenGrid Pen for grid ::lShadow shadow labels or we can create a file as INI with some template of labels as 7022=3,5|6,4|3|2|2|2 for the command to create labels we can use ...
by Silvio.Falconi
Thu Feb 27, 2014 5:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MyRpt - Diseñador de Reportings - En desarrollo :-)
Replies: 132
Views: 36328
Next

Return to advanced search