Hello all,
is in xBrowse an EDIT_MODE for CHECKBOX or an other solution to do checkboxes?
Hello all,
is in xBrowse an EDIT_MODE for CHECKBOX or an other solution to do checkboxes?
Günther,
You may use a combobox with "Yes" and "No"
Please review fwh\samples\mallorca.prg in FWH 8.01 to use a combobox
aArray:= {{"1",.T.},{"2",.T.}},;
WITH OBJECT ::oBrwPermisos:= TXbrowser():new(oFolder:aDialogs[2])
:nMarqueeStyle := MARQSTYLE_HIGHLCELL
:nColDividerStyle := LINESTYLE_BLACK
:nRowDividerStyle := LINESTYLE_LIGHTGRAY
:lColDividerComplete := .T.
:lRecordSelector := .F.
// Define alto de la fila
:nRowHeight := 15
:setarray(aArray)
:acols[1]:cHeader := 'x'
:aCols[2]:SetCheck( { "ON", "OFF" } )
:CreateFromResource(401)
END WITHAntonio Linares wrote:Günther,
You may use a combobox with "Yes" and "No"
Please review fwh\samples\mallorca.prg in FWH 8.01 to use a combobox
Antonio:
Any way to get the list box using xbrowse from resources rather the buildfromcode?
demont frank wrote:See :
http://fivetechsoft.com/forums/viewtopi ... highlight=
Frank