When I change with (oBrw:setarray( array ) , oBrw:refresh()) the actual array with same structure, the headertext and oBrw:hide(column), etc. are loosing!
Is this normal?
When I change with (oBrw:setarray( array ) , oBrw:refresh()) the actual array with same structure, the headertext and oBrw:hide(column), etc. are loosing!
Is this normal?
oBrw:aArrayData := aSubstitute
oBrw:Refresh()METHOD SetArray( aData, ................. )
<.......... code ....... >
// requested change:
if empty( ::aCols )
// end or proposed change:
// existing code
::aCols := {}
for 1 := 1 to len( aData[ 1 ] )
< ... existing code till the end ..>
// req change
endif
// end if change
return nil // proposed return selfThanks!!!!!!!