I explain you before I have on a type of visualization of my archive
- Code: Select all Expand view
oDbf:GoTop()
do while !oDbf:Eof
oBrw:aCols[nIni]:cHeader := "1"
oBrw:aCols[nIni+1]:cHeader := "2"
oBrw:aCols[nIni+2]:cHeader := "3"
oBrw:aCols[nIni+3]:cHeader := "4"
oBrw:aCols[nIni+4]:cHeader := "5"
cTitle:= dtoc(oDbf:data)
// oBrw:SetGroupHeader( cTitle, nIni, nIni+4 )
AEval( oBrw:aCols, { |o| o:cGrpHdr := cTitle }, nIni, nIni+4 )
AEval( oBrw:aCols, { |o| o:nGrpHeight := 25 } )
Now I wish erase the line wher eis the numbers from 1 to 5 so I tried to change the cheader in ""
- Code: Select all Expand view
oBrw:aCols[nIni]:cHeader := ""
oBrw:aCols[nIni+1]:cHeader := ""
oBrw:aCols[nIni+2]:cHeader := ""
oBrw:aCols[nIni+3]:cHeader := ""
oBrw:aCols[nIni+4]:cHeader := ""
If I erase these lines
- Code: Select all Expand view
oBrw:aCols[nIni]:cHeader := "1"
oBrw:aCols[nIni+1]:cHeader := "2"
oBrw:aCols[nIni+2]:cHeader := "3"
oBrw:aCols[nIni+3]:cHeader := "4"
oBrw:aCols[nIni+4]:cHeader := "5"
I have problems
because it show the letters
I tried also to set
::oLbx:nHeaderHeight := 0
Ho I can resolve to have only the headers with only dates?