Frames with text

T

Tony

I have frames with text. I need to write some vba code that will capture the
text in the frame. I've tried x=Selection.Frame(1).Text but get nothing.
I'm new to vba can anyone help. All suggestions are greatly appreciated.

Thanks
Anthony
 
J

Jezebel

You should learn to use Help or the ObjectBrowser, both of which would have
answered your question immediately --

x = selection.frames(1).Range
 
Top