
Signature
Luc Sanders
(MVP - PowerPoint)
Thanks Luc, but unfortunately it doesn't seem to work in the file I've been
sent (guess they haven't put everything in placeholders!)
Thanks for replying.

Signature
Regards,
Helen
> Helen,
> See if this helps:
[quoted text clipped - 12 lines]
> >
> > Thanks (in anticipation!)
John Wilson - 10 Aug 2006 18:28 GMT
This vba should reset text boxes
Sub lang()
Dim osld As Slide
Dim oshp As Shape
For Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
If oshp.Type = msoTextBox Then
If oshp.HasTextFrame Then
oshp.TextFrame.TextRange.LanguageID = msoLanguageIDEnglishUS
End If
End If
Next oshp
Next osld
End Sub

Signature
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html
> Thanks Luc, but unfortunately it doesn't seem to work in the file I've been
> sent (guess they haven't put everything in placeholders!)
[quoted text clipped - 17 lines]
> > >
> > > Thanks (in anticipation!)
Helenh - 11 Aug 2006 16:37 GMT
sorry John, you've lost me.. can you explain in a different way (or very
basic terms) what do I need to do?

Signature
Thanks,
Helen
> This vba should reset text boxes
>
[quoted text clipped - 33 lines]
> > > >
> > > > Thanks (in anticipation!)
<<< R I N O >>> - 10 Aug 2006 19:11 GMT
Hi Helen,
If you completely followed Luc instruction and nothing did change then you should re-install your PT and this time choose to include
all language modules.
Hope it'll works on you!
Rino
Thanks Luc, but unfortunately it doesn't seem to work in the file I've been
sent (guess they haven't put everything in placeholders!)
Thanks for replying.

Signature
Regards,
Helen
"Luc" wrote:
> Helen,
> See if this helps:
[quoted text clipped - 12 lines]
> >
> > Thanks (in anticipation!)