Hello,
what is the best solution to show different values at the same xbrowse-section
I have a fixed section with the main customer-informations and one section to be replaced
showing different values on button-action.
maybe a full browser using :
oBrw1:MoveCol( 12, 6 ) // switch position
or
oBrw1:aCols[1]:Hide() / oBrw1:aCols[1]:Show()
or a colum value-replacement of the section
Main-data
aDatT[1] := TRIM(("KUNDE")->ANREDE)
aDatT[2] := TRIM(("KUNDE")->NAME) + " " + TRIM(("KUNDE")->NAME1)
aDatT[3] := ("KUNDE")->ANSCHRIFT
aDatT[4] := TRIM(("KUNDE")->PLZ) + " " + TRIM(("KUNDE")->ORT)
aDatT[5] := ("KUNDE")->TEL_PRI
section replacement on button-action :
in the morning
aDatT[20] := ("KUNDE")->F_TOUR
aDatT[21] := ("KUNDE")->F_TIME
aDatT[22] := ("KUNDE")->F_PRINT
in the evening
aDatT[20] := ("KUNDE")->N_TOUR
aDatT[21] := ("KUNDE")->N_TIME
aDatT[22] := ("KUNDE")->N_PRINT
at night
aDatT[20] := ("KUNDE")->A_TOUR
aDatT[21] := ("KUNDE")->A_TIME
aDatT[22] := ("KUNDE")->A_PRINT