Reverse large files
- From: Nomey <newsgroups@xxxxxxxxxxxxxx>
- Date: Thu, 24 Aug 2006 09:50:18 +0200
Dear all,
Can someone explain why the following code doesn't invert a selection of 60,000 words. Only a small part at the end of the doc is inverted.
Sub ReverseSelection02()
Dim strA As String
If Selection.Type = wdNoSelection Then
MsgBox ("There is no selection.")
Else
strA = StrReverse(Selection)
Selection.TypeText (strA)
End If
End Sub
I'm asking this because I would like to invert a large document with occasional italic and bold formatting, as well as small caps. Is there another method to the text of docs like this - preserving character formatting? Given the file size, it has to be rather quick.
Chau
Nomey
.
- Follow-Ups:
- Re: Reverse large files
- From: Jezebel
- Re: Reverse large files
- Prev by Date: Re: LEading Edge word processing.
- Next by Date: Re: Reverse large files
- Previous by thread: Re: How to find ListTemplate number in listgalleries object
- Next by thread: Re: Reverse large files
- Index(es):
Relevant Pages
|