Can I show or hide a group of columns of a xbrowse ?
sample :
@ nRow ,nCol CHECKBOX aChk[1] VAR ::lBa PROMPT ::aRuote[1] SIZE 100, 20 OF oGrS1 ;
ON CHANGE hidexbrowse( ::oLbx,::lBa)
Function hidexbrowse( ::oLbx,::lBa)
local i,oCol
do case
case ::lba = .t.
nInit := 2
nEnd:= 6
endcase
for i= nInit to nEnd
oCol := ::oLbx:aCols[ i ]
oCol:HIde()
next
::oLbx:refresh()
return nil