Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
And if anyone else is interested, here's my c# translation:
int j = 0; while (j < sText.Length) { if (j + 250 <= sText.Length) sPart = sText.Substring(j, 250); else sPart = sText.Substring(j); txtBox.TextFrame.Characters(j, missing).Insert(sPart); j += 250; } |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Character limit in textbox | Excel Worksheet Functions | |||
How do I get around the 255 char limit? | Links and Linking in Excel | |||
LIMIT NUMBER OF CHAR IN A COMBINE CELL | Excel Discussion (Misc queries) | |||
Validation through VBA using string has 255 char limit?????? | Excel Programming | |||
Limit to 50 char only | Excel Programming |