xbrowse report setup

Post Reply
User avatar
Silvio.Falconi
Posts: 7104
Joined: Thu Oct 18, 2012 7:17 pm

xbrowse report setup

Post by Silvio.Falconi »

to make a report I use easy

oBrw:Report("Stampa elenco", nil, nil, bSetup)

where bSetup is

Code: Select all | Expand

bSetUp   := < |oRep, Brw, n |
      if n == 2
         oRep:CellView()
         return nil
      endif
      return 2
      >
If I wish add fonts ?
If I wish add aGroupby ?
If I wish add a transparent image on background ?

how I can do ?

I tried with (but not run )

bSetUp := < |oRep, Brw, n |

bImage := {|oRep| oRep:SayBitmap(0.5, 7, "NEW_REC")}
bStart := {|oRep| oRep:bStartPage := bImage}


if n == 2
oRep:CellView()
return nil
endif
return 2
>
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Post Reply