Display String with newline in Forms?

I have a string with line breaks (environment.newline - but also tried with vbclrf). The “write line” (and message Box) works good in displaying it in different lines.
How can I show the string including the line breaks in forms?
Tried also
but no luck…

Did u try appending “
“. Htmllinebreak

1 Like

@Ludwig_Wilhelm,

Have you tried with “\n” instead of Environment.NewLine

1 Like

I found out, that when setting text area to “disabled” (no input possible) - the line breaks are omitted. Otherwise they are shown…

1 Like