There are textboxes from the Drawing toolbar and textboxes from the control
toolbox toolbar:
You can extract the text from each like this:
(Help) So, okay - I got this to work - subject to the following
limitation - and I thank you very kindly for your help, Dave P.
The following, tagged onto the end of my routine, does the job -
Dim myTB As Shape
Dim myStr As String
Dim MyDataObj As New DataObject
'from drawing toolbar
For Each myTB In ActiveSheet.Shapes
If myTB.Type = msoTextBox Then
myStr = myTB.DrawingObject.Caption
MyDataObj.SetText (myStr) 'do something with that string
MyDataObj.PutInClipboard
End If
Next myTB
Then goes on to open Word & paste into a previously created
file....BUT....truncates the last few characters I need to copy over
(The text as it has to be formatted runs right around 258 chatacters,
what with spaces & such). Comes out just the wat it did when I
originally tried putting the text in a cell.
I know it's not the clipboard's character limit I'm up against here -
I'm thinkin' it happens when I create it as a Data Object (then it's
subject to Excel '97's 255 char. limit).
Lookin' for more wisdom...hopefully a way around..TIA.
tm