Creating carriage return in Mendix to be displayed in notepad correctly

1
Morning all, Im trying to create a carriage return that can be displayed correctly in notepad. The method im using works using notepadd++ but not in normal notepad. Below example: $CarrierLabel+' '+$StringCarrierLabel This method does not work in notepad, does anyone know of a way to get notepad to display carriage returns correctly? I think it requires \r \n but I'm not sure how to output this within Mendix. Regards, Matt Smith
asked
1 answers
3

When you build the string you have to do it like this:

$CarrrierLabel + '

and this text comes on the next line in notepad'

So you just use the enter key and type on the next line the rest of the string.

Regards,

Ronald

answered