Yoichi
(Yoichi)
October 15, 2022, 12:18pm
10
Hi,
This error is caused by double quote character except 0x22. In the above case, there are several expression which uses not "
but ”
, like the following, for example.
Split(TabData.rows(10)(1).ToString,”/”)(1).ToString.Trim = "RELATIVES"
Hi,
In windows legacy, it seems double quote is normalized and any double quote characer is accepted. However, at this time, in windows (.net6) ,in fact, only " (0x22) is accepted to express string literal. To make matter worse, it seems to occur only compiling. (Expression validator don’t raise an alert.)
FYI, the following is sample for reproducing. The first Assign uses " 0x22 and second Assign uses “ and it fails in compiling.
Sample20221013-2.zip (2.1 KB)
[image]
Regards,
I just fixed these expression as the following. However it’s not cause for the first exception. So can you try to run the following xaml again?
Main2.xaml (423.3 KB)
Regards,