Hi,
Is it possible to create xBrowse combined from few fields from DBF and few elements from Array
Best regards,
Hi,
Is it possible to create xBrowse combined from few fields from DBF and few elements from Array
Best regards,
aItems := { { 1, "Name1", 20 }, { 2, "Name2", 30 }, { 3, "Name3", 40 } }
@ 0,0 XBROWSE oBrw OF oWnd DATASOURCE "MYDBF" ;
COLUMNS "DATE", "ITEMCODE", ;
{ || aItems[ MYDBF->ITEMCODE, 2 ] }, ;
{ || aItems[ MYDBF->ITEMCODE, 3 ] }, ;
"QUANTITY" ;
HEADERS "Date", "Code", "ItemName", "Price", "Quantity" ;
<otherClauses,...>