adding graphics to printing
Posted: Sat Feb 27, 2010 10:31 pm
I'm Printing a xbrowse I'd like to add some graphics to the header and even columns headings.
www.FiveTechSoft.com
https://forums.fivetechsupport.com/~fivetec1/forums/
https://forums.fivetechsupport.com/~fivetec1/forums/viewtopic.php?t=18219
Code: Select all | Expand
oBrw:Report( , , , { | oRep, oBrw, nCall| MyRepSetup( oRep, oBrw, nCall } )
*...
*...
static function MyRepSetUp( oRep, oBrw, nCall )
if nCall == 1 // called by xbrowse after oRep created but before creation of columns
return 2 // ask xbrowse to call second time after creation of columns
endif
// this call is after creation of columns
// here we extend oRep and oRep:Columns array
// with any additonal features we want
return nil