Page 1 of 1

InputRequester cuts off text

Posted: Thu Feb 06, 2025 1:19 pm
by PureBasti
The InputRequester seems to cut off the last word of a given string at certain lengths.

For example the following code line correctly displays the entire string in the InputRequester.

Code: Select all

InputRequester("Lizenzschlüssel", "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "")
Image


When we remove the 'od' at the end the 'eirm' is completely cut off in the InputRequester.

Code: Select all

InputRequester("Lizenzschlüssel", "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirm", "")
Image

Re: InputRequester cuts off text

Posted: Fri Feb 07, 2025 5:01 pm
by Bmld756
Hello,
I don't have this issue.

Image

Re: InputRequester cuts off text

Posted: Fri Feb 07, 2025 11:55 pm
by Mindphazer
Bmld756 wrote: Fri Feb 07, 2025 5:01 pm Hello,
I don't have this issue.

Image
Your image shows the result of the first example
Try the second one

On my Mac, i have the same issue as PureBasti

Re: InputRequester cuts off text

Posted: Sat Feb 08, 2025 12:30 am
by mk-soft
Not here, but ich have only a Full-HD monitor

Re: InputRequester cuts off text

Posted: Sat Feb 08, 2025 3:21 pm
by infratec
I think it would be good to know the PB version and the OS version which is in use.
Maybe also the hardware is from interrest.

Re: InputRequester cuts off text

Posted: Sun Apr 06, 2025 6:35 am
by Lebostein
It seems line breaks are allowed:

Code: Select all

InputRequester("Lizenzschlüssel", "Lorem ipsum dolor sit amet,"+#CR$+"consetetur sadipscing elitr, sed diam nonumy eirm", "")
If the line length is fixed, then PB should perhaps insert line breaks automatically?