FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour XBROWSE Help needed
Posts: 1048
Joined: Mon Oct 24, 2005 09:54 AM
XBROWSE Help needed
Posted: Sat Dec 06, 2008 03:24 PM
I will show an array with this structure with XBROWSE. But only the bolded subarray!!

aadd(aGefunden,{{"",""} , {rep_such->rep,rtrim(rep_such->repbez),atrepl(CRLF,rtrim(rep_such->bem)," "),cJahr} })

Any suggestion?
Regards,
Günther
---------------------------------
office@byte-one.com
Posts: 2365
Joined: Wed Nov 02, 2005 11:46 PM
XBROWSE Help needed
Posted: Sat Dec 06, 2008 04:07 PM

make another array

aGefunden2 := {}
aeval( aGefunden, {|uDato| aadd( aGefunden2, uDato[2] ) } )

oBrw:SetArray( aGefunden2 )

Continue the discussion