Spellcheck doesn't work when I edit a word???

G

Guest

When I edit an English word -drop a letter, for instance- the spellchecker
marks the word which has an invalid spelling, that's good. But after I
correct the spelling, spellcheck marks the word anyway.
For instance, I wrote the word "recruitment" then erased "c", it became
"reruitment"
and then I wrote a "c" again --> "recruitment". But spellchecher recognizes
the word as three pieces now: "re", "c", and "ruitment" and marks the pieces
separately.
How do I solve this problem?? Is there any patch or update for this???
thanx in advance...
 
G

Guest

I can only tell you that this doesn't happen when I do exactly as you say
(2003 sp2)

If you send me a sample that splits recruitment into 3 words I'll see if I
can spot whats going on
john AT SIGN technologytrish.co.uk
--

Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html
 
G

Guest

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top