Xojo 2020R1
This code:
TextField1.Value = “This & ““That”””
Puts this in the text field:
This & "That"
Is there a property to prevent this?
Text areas don’t seem to have this problem.
Xojo 2020R1
This code:
TextField1.Value = “This & ““That”””
Puts this in the text field:
This & "That"
Is there a property to prevent this?
Text areas don’t seem to have this problem.
Seems a bug to me.
You can do:
TextField1.Value = "<raw>This & ""That""</raw>"
But I think is better to wait for a fixed release, you may need to remove the raw commands when this is fixed.
Agree with this part.
Thanks for the insights. Using raw tags is a workaround. But I can keep the app in Web1 for now.
Feedback #61565