The text box is set to a different language (Turkish)!
-- Tools >Language or if you have a lot to do try this vba code:
Sub Langswap()
Dim sld As Slide
Dim shp As Shape
For Each sld In ActivePresentation.Slides
For Each shp In sld.Shapes
If shp.Type = msoTextBox Or msoPlaceholder _
And shp.HasTextFrame Then
shp.TextFrame.TextRange.LanguageID _
= msoLanguageIDEnglishUK
End If
Next
Next
End Sub
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html
> John,
> I've sent the sample and its screenshot in my computer.
[quoted text clipped - 18 lines]
> > > How do I solve this problem?? Is there any patch or update for this???
> > > thanx in advance...
Linda Adams - 13 Sep 2006 12:37 GMT
Very useful! I've had a few occasions where this would have been quite handy.

Signature
Linda Adams
http://www.hackman-adams.com
http://www.david-hedison.com
> The text box is set to a different language (Turkish)!
> -- Tools >Language or if you have a lot to do try this vba code:
[quoted text clipped - 41 lines]
> > > > How do I solve this problem?? Is there any patch or update for this???
> > > > thanx in advance...
smeagol - 13 Sep 2006 19:45 GMT
thank you very much,
my problem is solved.... :))
"John Wilson":
> The text box is set to a different language (Turkish)!
> -- Tools >Language or if you have a lot to do try this vba code:
[quoted text clipped - 41 lines]
> > > > How do I solve this problem?? Is there any patch or update for this???
> > > > thanx in advance...