the array I used have 3 row and 9 columns
Why the box is printed in that type ?
then How I can make to have the grid ?
mytest
- Code: Select all Expand view
- Function Stampa_Tabella(aschema)
local oPrn, oFont, oBold
local nPgWidth, nPgHeight
local aCrops, cText
PRINT oPrn PREVIEW
DEFINE FONT oFont NAME "Courier New" SIZE 0,-11 BOLD OF oPrn
DEFINE FONT oBold NAME "VERDANA" SIZE 0,-30 BOLD OF oPrn
PAGE
oPrn:PrintTable( 4, 2, aschema, 4, 4, oFont, .t., "Scheme n°", "CM" )
ENDPAGE
ENDPRINT
RELEASE FON oFont, oBold
return nil