G
Ghislain
Hello,
I'm using a VBA macro to extract text from a word document (and a
litlle bit more otherwise I would simply save as..) . My macro looks
like this :
Dim paragraph As paragraph
For Each paragraph In ActiveDocument.Paragraphs
Dim word As Range
For Each word In paragraph.Range.Words
'Do something
Next
Next
--
The trouble is that I get tabulations and other special characters.
Is there a simple way to get only text words ? (I can't deal with the
ascii value since I've got accents).
Thanks ,
Ghislain
I'm using a VBA macro to extract text from a word document (and a
litlle bit more otherwise I would simply save as..) . My macro looks
like this :
Dim paragraph As paragraph
For Each paragraph In ActiveDocument.Paragraphs
Dim word As Range
For Each word In paragraph.Range.Words
'Do something
Next
Next
--
The trouble is that I get tabulations and other special characters.
Is there a simple way to get only text words ? (I can't deal with the
ascii value since I've got accents).
Thanks ,
Ghislain