Quote from
HPW on January 15, 2022, 9:18 am
Hello,
Take a look at the Text-Entry object:
https://winhelp.visualneo.com/TextEntryFieldTool.html
There you can see Style option "Multi-line". Activate it.
Then you make your textentry so high that you can see more than one line of text.
You can also use scrollbars to scroll through the list when it gets longer.
Setvar "[YourTextEntryContentVariable]" ""
Loop "1" "[YourArrayLength]" "[Counter]"
Setvar "[YourTextEntryContentVariable]" "[YourTextEntryContentVariable][YourArray[Counter]][#13][#10]"
EndLoop
That puts each element in a Stringlist delimited by the CarriageReturn/Linefeed-Characters. (Short [CRLF])
The will sshow up in the Multiline Text-entry object.
Regards
Hello,
Take a look at the Text-Entry object:
https://winhelp.visualneo.com/TextEntryFieldTool.html
There you can see Style option "Multi-line". Activate it.
Then you make your textentry so high that you can see more than one line of text.
You can also use scrollbars to scroll through the list when it gets longer.
Setvar "[YourTextEntryContentVariable]" ""
Loop "1" "[YourArrayLength]" "[Counter]"
Setvar "[YourTextEntryContentVariable]" "[YourTextEntryContentVariable][YourArray[Counter]][#13][#10]"
EndLoop
That puts each element in a Stringlist delimited by the CarriageReturn/Linefeed-Characters. (Short [CRLF])
The will sshow up in the Multiline Text-entry object.
Regards
luishp and saeid have reacted to this post.