G
Guest
I am working with several PowerPoint files that contain sections pasted in
from other documents. As a result, the presentation contains sections that
are formatted with English-US, Brazilian Portuguese, and one or two varieties
of Spanish.
I'm trying to write a VBA program that will change all of the text to either
No Proofing or to one of the languages I work with. But I'm having trouble.
My VBA Help doesn't say anything about proofing tools.
I did find this code fragment on the Internet, and I understand how it
works. Can I add something to the line marked with XXX? What would that be?
= = = = = = = = = = = = = = =
Dim oSld As Slide
Dim oShp As Shape
Dim I As Integer
On Error Resume Next
For Each oSld In ActivePresentation.Slides
For I = oSld.Shapes.Count To 1 Step -1
Set oShp = oSld.Shapes(I)
oShp ' XXX
Next I
Next oSld
= = = = = = = = = = = = = = =
Thanks for any pointers.
* I found you via MVPS.org
from other documents. As a result, the presentation contains sections that
are formatted with English-US, Brazilian Portuguese, and one or two varieties
of Spanish.
I'm trying to write a VBA program that will change all of the text to either
No Proofing or to one of the languages I work with. But I'm having trouble.
My VBA Help doesn't say anything about proofing tools.
I did find this code fragment on the Internet, and I understand how it
works. Can I add something to the line marked with XXX? What would that be?
= = = = = = = = = = = = = = =
Dim oSld As Slide
Dim oShp As Shape
Dim I As Integer
On Error Resume Next
For Each oSld In ActivePresentation.Slides
For I = oSld.Shapes.Count To 1 Step -1
Set oShp = oSld.Shapes(I)
oShp ' XXX
Next I
Next oSld
= = = = = = = = = = = = = = =
Thanks for any pointers.
* I found you via MVPS.org