Perhaps some FW users remember me.
My former name was Detlef Hoefner. After marriage my name has changed.
I am already retiree and reactivated my FWH version 10.2 with hobby purpose.
My problem is a txBrowse which doesn't show column totals and neither accepts edited values.
I can edit values but whe i leave the cells the former content remains visible.
Here my code :
- Code: Select all Expand view
REDEFINE XBROWSE oBrwPos ID 50 OF oDlg ALIAS "pos" FOOTERS COLOR CLR_INK, CLR_PAPER FASTEDIT LINES
oBrwPos:AddColumn( " Datum ", {|| pos->datum }, , , , "CENTER", 86, .F., .F., .t., , , , , .F., , , , , .F., , , )
oBrwPos:AddColumn( " Leistung ", {|| pos->leistung }, , , , "LEFT", 430, .F., .F., .t., , , , , .F., , , , , .F., , , )
oBrwPos:AddColumn( " Anzahl ", {|| pos->dauer }, "999" , , , "RIGH", 63, .F., .F., .t., , , , , .F., , , , , .F., , , )
oBrwPos:AddColumn( " Einheit ", {|| pos->einheit }, , , , "CENTER", 70, .F., .F., .t., , , , , .F., , , , , .F., , , )
oBrwPos:AddColumn( " Summe ", {|| pos->summe }, "@E 99,999.99" , , , "RIGHT", 92, .F., .F., .t., , , , , .F., , , , , .F., , , )
oBrwPos:AddColumn( " MwSt-Satz ", {|| pos->mwstsatz }, "@E 99.99" , , , "RIGHT", 66, .F., .F., .t., , , , , .F., , , , , .F., , , )
WITH OBJECT oBrwPos
:nMarqueeStyle := MARQSTYLE_HIGHLROW
:nRowDividerStyle := 1
:nColDividerStyle := 3
:lHScroll := .f.
:nDataLines := 1
:lFastEdit := .f.
:nStretchCol := STRETCHCOL_LAST
:bClrSel := {|| { CLR_BLACK, CLR_NO_FOCUS } }
:MakeTotals()
:aCols[ 1 ]:nEditType := EDIT_DATE
:aCols[ 2 ]:nEditType := EDIT_GET_LISTBOX
:aCols[ 2 ]:aEditListBound := ;
:aCols[ 2 ]:aEditListTxt := aPosCfg[ 1 ]
:aCols[ 4 ]:nEditType := EDIT_GET_LISTBOX
:aCols[ 4 ]:aEditListTxt := { "Std.", "Min.", "km", "UE" }
:aCols[ 5 ]:nFooterType := AGGR_TOTAL
:aCols[ 5 ]:cEditPicture := '@ €99,999.99'
END
I'd be glad for any help.
Detlef