Re: Can text box width respond to length of text?
There's too many issues with what you changed to combine them honestly
For Example
In
If(Len(Self.Text)*100<100,100,Len(Self.Text)*12)
Len(Self.Text)*100 - With this, even ten characters in a text box is going to be checking against a value of 1000, thats a massive number to chekc against for a 10 character string, very inaccurate.
and in the second half
If(Len(Self.Text)*0<300
Len(Self.Text)*0 will never have any other value than 0, so it will always come out as true, and therefore give you a width of 500 every single time.
Here you will see I shortened short side a little for you , and brought down full size a bit
If(Len(Self.Text)*10<75,75,Len(Self.Text)*8.5)
and here are several examples from 5 digits up to 100 to show it looks good with just this





