|
-
Dec 29th, 2020, 09:42 PM
#11
Fanatic Member
textbox maximum character
vbccr v1.7.1
i can't enter the maximum supported character length of 32K chars using the textboxW control.
i tried it with the following code:
textboxW.text = String(32000, "a")
or
textboxW.text = String(6500, "a")
none of them above filled the textbox!
but String(650, "a") works!
the maxlength property is set to 0.
Edit:
after some testing i found out that the limit is 4095 chars...
Edit2:
Problem solved:
the property .MultiLine=True enables the support of 32K maximum characters!
Last edited by Mith; Dec 29th, 2020 at 10:11 PM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|