In the column of TArrayBrowse, you can put Checkbox? how?
I tried but gives error* in execution:
Código: Seleccionar todo
METHOD FormInitialize( oSender ) CLASS TForm1
local aLine
local oChk
for each aLine in dadosTabela()
oChk:=TCheckBox():New(::oBrwIndex:aCols[1])
oChk:SetBounds( 0, 0, 18, 18 )
oChk:create()
::oBrwIndex:AddRow( {oChk, aLine[1], aLine[2] })
//::oBrwIndex:AddRow( {'[X]', aLine[1], aLine[2] }) // I use it to break a branch.
next
RETURN Nil
note: I do not want to use :nMarqueStyle for selection lines.