Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi - need help
I would like to pass text from one text box to another. The text is more than 255 characters in length which Excel has a problem with. I have tried this: Sub LoadBox(FBox, TBox) Set F1 = ActiveSheet.Shapes(FBox) Set T1 = ActiveSheet.Shapes(TBox) P = F1.TextFrame.Characters.Text With T1 .TextFrame.Characters.Text = "" For i = 0 To Int(Len(F1.TextFrame.Characters.Text) / 255) .TextFrame.Characters(.TextFrame.Characters.Count + 1).Insert _ Mid(P, (i * 255) + 1, 255) Next End With End Sub - but this will only pass 255 characters. Any help appreciated. TIA Andrew Bourke |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
convert 5 characters in a cell to 6 characters by adding a zero | Excel Discussion (Misc queries) | |||
Insert Leading Characters If String Is Only 7 Characters | Excel Discussion (Misc queries) | |||
In Excel find characters when multiple characters exist w/i a cel | Excel Worksheet Functions | |||
HOW DO I EXTRACT ALL CHARACTERS AFTER 5 CHARACTERS ON LEFT | Excel Worksheet Functions | |||
Passing parameters to UDF | Excel Programming |