Hi all,
in our app we display the name of a customer in the title of the customer-window.
The code ist simple:
string ls_name1, ls_name2
ls_name1=dw_detail.getitemstring(dw_detail.GetRow(),"vname")
if isnull(ls_name1) then ls_name1=""
ls_name2=dw_detail.getitemstring(dw_detail.GetRow(),"name")
// ls_name2=dw_detail.object.name[1] // does not make a difference
if isnull(ls_name2) then ls_name2=""
parent.title="Kunde "+ls_name1+" "+ls_name2
This works fine with PB up to 2021.
Today with 2022R2 we encounter a problem with the ampersand character.
If the string in the DW-columns contains a ampsand, it will converted to something like a shortcut.
Can someone confirm this behavior?
i have opened a Ticket (https://www.appeon.com/standardsupport/search/view?id=11123)
Regards, André