Page 1 of 1

Multiple paragraphs in @uiprompt

Posted: Mon Aug 29, 2016 12:48 am
by wjgatt
I would like to have @uiprompt display 2 paragraphs, with a space between one and other, for example:

Code: Select all

This is paragraph one (more text here). This is paragraph two (more text here).
Is is possible to write a string taken as an input by the function which does this?

Thanks
W

Re: Multiple paragraphs in @uiprompt

Posted: Mon Aug 29, 2016 1:20 am
by johansamuelsson

Code: Select all

%msg = "This is paragraph one (more text here)." + @Chr(13) + @Chr(13) + "This is paragraph two (more text here)." @UiPrompt(%msg)
Regards Johan

Re: Multiple paragraphs in @uiprompt

Posted: Mon Aug 29, 2016 1:27 am
by wjgatt
Excellent, thank you!

Regards,
W