Hi,
I would like to find some array in a word document and to copy them into
a txt file (with tab instead of cell of course).
My input point is a text file with name of array to copy.
Array are referenced into list of table.
How can I do?
Thanks beforehand,
BR
Fabien
Jezebel - 15 Aug 2006 00:49 GMT
Assuming your array contains strings --
Dim pFileNum as long
pFileNum = freefile
Open "C:\MyFile.txt" for output as pFileNum
Print #pFileNum, Join(MyArray, vbtab)
close #pFileNum
If your array is not text, you'll need to iterate it.
> Hi,
>
[quoted text clipped - 10 lines]
> BR
> Fabien