Table inside textbox

A

Aaron Blacksmith

I need to open a word document and read a multi column table and translate
it
into a table. My problem is that the type of document I want to read stores
a table inside a textbox (an ordinary Word textbox, no Active-x). The text
box seems to hide the table - at least I haven't found the way to get
through it.

How can I access the table inside the text box and read the contents of it,
cell by cell?

I use Word 2003 and XP.

Any help or hint in the right direction would be great.
Aaron
 
J

Jezebel

You haven't said what you've tried so far, so it's a little hazy trying to
suggest something, but try

? activedocument.StoryRanges(wdTextFrameStory).Tables(1).cell(1,1).range

in the immediate window to see if you're on the right track
 
Top