How I can colorize the header with Hgray color ?
colorized retport header
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
colorized retport header
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- FranciscoA
- Posts: 1964
- Joined: Fri Jul 18, 2008 1:24 am
- Location: Chinandega, Nicaragua, C.A.
Re: colorized retport header
Hi.
Take a look at this (FW1204). Maybe can help you.
http://fivetechsupport.com/forums/viewt ... vistosidad
Regards.
Take a look at this (FW1204). Maybe can help you.
http://fivetechsupport.com/forums/viewt ... vistosidad
Regards.
Francisco J. Alegría P.
Chinandega, Nicaragua.
Fwxh1204-MySql-TMySql
Chinandega, Nicaragua.
Fwxh1204-MySql-TMySql
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: colorized retport header
I wish use standard Fwh Report class ( for future support)
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: colorized retport header
Code: Select all
#include "fivewin.ch"
#include "report.ch"
function Main()
local oRep, oFont, oBold, oCol
USE CUSTOMER NEW SHARED
SET FILTER TO RECNO() <= 20
GO TOP
DEFINE FONT oFont NAME "TAHOMA" SIZE 0,-12
DEFINE FONT oBold NAME "VERDANA" SIZE 0,-13 BOLD
REPORT oRep PREVIEW FONT oFont, oBold
oRep:aClrText[ 1 ] := CLR_BLACK
oRep:aClrText[ 2 ] := CLR_HRED
COLUMN oCol TITLE "NAME" DATA FIELD->FIRST FONT 1
oCol:bTitleFont := { || 2 }
COLUMN oCol TITLE "CITY" DATA FIELD->CITY FONT 1
oCol:bTitleFont := { || 2 }
ENDREPORT
ACTIVATE REPORT oRep
RELEASE FONT oFont, oBold
return nil
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: colorized retport header
Some modifies Report class
Perhaps we can adopt the next release
I sent all to Antonio and Nages
Last edited by Silvio.Falconi on Mon Jun 03, 2019 11:00 am, edited 1 time in total.
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: colorized retport header
Type 1
oRep:lTitleColorized:=.t.
oRep:lDivideHeader:=.t.
type 2
oRep:lTitleColorized:=.t.
oRep:lDivideHeader:=.f.
add also
oRep:lRoundTitle:=.t. to roundbox
oRep:lBoxTitle:=.f. or only box/ fill
I sent all new methods to Antonio and Nages
oRep:lTitleColorized:=.t.
oRep:lDivideHeader:=.t.
type 2
oRep:lTitleColorized:=.t.
oRep:lDivideHeader:=.f.
Code: Select all
#include "fivewin.ch"
#include "report.ch"
function Main()
local oRep, oFont, oBold, oCol
USE CUSTOMER NEW SHARED
SET FILTER TO RECNO() <= 20
GO TOP
DEFINE FONT oFont NAME "TAHOMA" SIZE 0,-12
DEFINE FONT oBold NAME "VERDANA" SIZE 0,-13 BOLD
REPORT oRep PREVIEW FONT oFont, oBold
oRep:aClrText[ 1 ] := CLR_BLACK
oRep:aClrText[ 2 ] := CLR_HRED
oRep:lTitleColorized:=.t.
// oRep:nClrTitle :=CLR_BLUE
oRep:lDivideHeader:=.f.
COLUMN oCol TITLE "NAME" DATA FIELD->FIRST FONT 1
oCol:bTitleFont := { || 2 }
COLUMN oCol TITLE "CITY" DATA FIELD->CITY FONT 1
oCol:bTitleFont := { || 2 }
ENDREPORT
ACTIVATE REPORT oRep
RELEASE FONT oFont, oBold
return nil
add also
oRep:lRoundTitle:=.t. to roundbox
oRep:lBoxTitle:=.f. or only box/ fill
I sent all new methods to Antonio and Nages
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: colorized retport header
perhaps we can add it on Group and total but I not tried
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC