Group:  Other Microsoft Office Products ยป microsoft.public.powerpoint
Thread: Spellcheck doesn't work when I edit a word???

DotNetBag
.NET Development Newsgroups

HTVi
TV Discussion Newsgroups

Our Hot Pick: Rising Antivirus 2006 - Certified by TUV & Checkmark! Get 10% discount by entering this coupon code: ONDISCOUNT10
Rising Antivirus 2006

Spellcheck doesn't work when I edit a word???
smeagol 13.09.2006 08:10:02
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...
RE: Spellcheck doesn't work when I edit a word???
John Wilson 13.09.2006 08:16:02
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


"smeagol" wrote:

[Quoted Text]
> 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...
RE: Spellcheck doesn't work when I edit a word???
smeagol 13.09.2006 08:49:02
John,
I've sent the sample and its screenshot in my computer.

"John Wilson":

[Quoted Text]
> 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
>
>
> "smeagol" wrote:
>
> > 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...
RE: Spellcheck doesn't work when I edit a word???
John Wilson 13.09.2006 10:01:01
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


"smeagol" wrote:

[Quoted Text]
> John,
> I've sent the sample and its screenshot in my computer.
>
> "John Wilson":
>
> > 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
> >
> >
> > "smeagol" wrote:
> >
> > > 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...
RE: Spellcheck doesn't work when I edit a word???
Linda Adams 13.09.2006 11:37:01
Very useful! I've had a few occasions where this would have been quite handy.

--
Linda Adams
http://www.hackman-adams.com
http://www.david-hedison.com


"John Wilson" wrote:

[Quoted Text]
> 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
>
>
> "smeagol" wrote:
>
> > John,
> > I've sent the sample and its screenshot in my computer.
> >
> > "John Wilson":
> >
> > > 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
> > >
> > >
> > > "smeagol" wrote:
> > >
> > > > 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...
RE: Spellcheck doesn't work when I edit a word???
smeagol 13.09.2006 18:45:02
thank you very much,
my problem is solved.... :))

"John Wilson":

[Quoted Text]
> 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
>
>
> "smeagol" wrote:
>
> > John,
> > I've sent the sample and its screenshot in my computer.
> >
> > "John Wilson":
> >
> > > 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
> > >
> > >
> > > "smeagol" wrote:
> > >
> > > > 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...

Home | Search | Terms | Imprint | Contact
Newsgroups Reader - provided by WiredBox.Net