A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

setting a fixed default to check spelling and grammar



 
 
Thread Tools Display Modes
  #1  
Old April 11th, 2008, 02:46 AM posted to microsoft.public.word.docmanagement
crossroads
external usenet poster
 
Posts: 33
Default setting a fixed default to check spelling and grammar

Under Tools/language/set language I have unchecked "do not check spelling or
grammar" on my default Word template. I also have this default on a special
report template. I often have to copy and paste other documents I receive
from external sources into this special report template and before I do, I
make sure I set these other documents to uncheck their "do not check..."
The problem is that after I copy and paste into my special report template,
the "do not check spelling or grammar" box gets mysteriously checked. I'm
continually having to go and uncheck it so I can see the spelling and
grammatical errors.
Any help please?

--
phil b
australia
  #2  
Old April 11th, 2008, 06:04 AM posted to microsoft.public.word.docmanagement
Graham Mayor
external usenet poster
 
Posts: 18,297
Default setting a fixed default to check spelling and grammar

Use edit paste special unformatted text (or the following macro) to
paste into your document.

Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
End
oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm


crossroads wrote:
Under Tools/language/set language I have unchecked "do not check
spelling or grammar" on my default Word template. I also have this
default on a special report template. I often have to copy and paste
other documents I receive from external sources into this special
report template and before I do, I make sure I set these other
documents to uncheck their "do not check..." The problem is that
after I copy and paste into my special report template, the "do not
check spelling or grammar" box gets mysteriously checked. I'm
continually having to go and uncheck it so I can see the spelling and
grammatical errors.
Any help please?



  #3  
Old April 11th, 2008, 06:28 AM posted to microsoft.public.word.docmanagement
crossroads
external usenet poster
 
Posts: 33
Default setting a fixed default to check spelling and grammar

sorry graham - I'm not as advanced as you - I get the drift of edit/paste
special but you lost me from then on.
--
phil b
australia


"Graham Mayor" wrote:

Use edit paste special unformatted text (or the following macro) to
paste into your document.

Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
End
oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm


crossroads wrote:
Under Tools/language/set language I have unchecked "do not check
spelling or grammar" on my default Word template. I also have this
default on a special report template. I often have to copy and paste
other documents I receive from external sources into this special
report template and before I do, I make sure I set these other
documents to uncheck their "do not check..." The problem is that
after I copy and paste into my special report template, the "do not
check spelling or grammar" box gets mysteriously checked. I'm
continually having to go and uncheck it so I can see the spelling and
grammatical errors.
Any help please?




  #4  
Old April 11th, 2008, 06:41 AM posted to microsoft.public.word.docmanagement
crossroads
external usenet poster
 
Posts: 33
Default setting a fixed default to check spelling and grammar

From a few minutes ago ... I just realised what you meant. I pasted
(special) the document unformatted as you said into my template having made
sure that the language/spell checks were right. After I pasted I still had
to uncheck so I could see the spelling/grammar
--
phil b
australia


"Graham Mayor" wrote:

Use edit paste special unformatted text (or the following macro) to
paste into your document.

Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
End
oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm


crossroads wrote:
Under Tools/language/set language I have unchecked "do not check
spelling or grammar" on my default Word template. I also have this
default on a special report template. I often have to copy and paste
other documents I receive from external sources into this special
report template and before I do, I make sure I set these other
documents to uncheck their "do not check..." The problem is that
after I copy and paste into my special report template, the "do not
check spelling or grammar" box gets mysteriously checked. I'm
continually having to go and uncheck it so I can see the spelling and
grammatical errors.
Any help please?




  #5  
Old April 11th, 2008, 08:20 AM posted to microsoft.public.word.docmanagement
Graham Mayor
external usenet poster
 
Posts: 18,297
Default setting a fixed default to check spelling and grammar

That is not normal behaviour. The proofing settings are associated with the
text. Pasting as unformatted should cause the pasted text to adopt the
format at the destination. If that has the language parameter you require
then so should the pasted text, regardless of how is was previously
formatted.

There may be some mechanism interfering with the required action. To attempt
to verify this start Word in its safe mode by holding the CTRL key whilst
starting and acknowledge the prompt which ensues.

Does the paste work correctly in that mode? If it does, see
http://www.gmayor.com/what_to_do_when_word_crashes.htm then
http://word.mvps.org/FAQs/AppErrors/...artingWord.htm.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org




crossroads wrote:
From a few minutes ago ... I just realised what you meant. I pasted
(special) the document unformatted as you said into my template
having made sure that the language/spell checks were right. After I
pasted I still had to uncheck so I could see the spelling/grammar

Use edit paste special unformatted text (or the following macro)
to paste into your document.

Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
End
oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm


crossroads wrote:
Under Tools/language/set language I have unchecked "do not check
spelling or grammar" on my default Word template. I also have this
default on a special report template. I often have to copy and
paste other documents I receive from external sources into this
special report template and before I do, I make sure I set these
other documents to uncheck their "do not check..." The problem is
that after I copy and paste into my special report template, the
"do not check spelling or grammar" box gets mysteriously checked.
I'm continually having to go and uncheck it so I can see the
spelling and grammatical errors.
Any help please?



  #6  
Old April 15th, 2008, 07:48 AM posted to microsoft.public.word.docmanagement
crossroads
external usenet poster
 
Posts: 33
Default setting a fixed default to check spelling and grammar

thanks Graham but pasting in Safe mode doesn't work either.
--
phil b
australia


"Graham Mayor" wrote:

That is not normal behaviour. The proofing settings are associated with the
text. Pasting as unformatted should cause the pasted text to adopt the
format at the destination. If that has the language parameter you require
then so should the pasted text, regardless of how is was previously
formatted.

There may be some mechanism interfering with the required action. To attempt
to verify this start Word in its safe mode by holding the CTRL key whilst
starting and acknowledge the prompt which ensues.

Does the paste work correctly in that mode? If it does, see
http://www.gmayor.com/what_to_do_when_word_crashes.htm then
http://word.mvps.org/FAQs/AppErrors/...artingWord.htm.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org




crossroads wrote:
From a few minutes ago ... I just realised what you meant. I pasted
(special) the document unformatted as you said into my template
having made sure that the language/spell checks were right. After I
pasted I still had to uncheck so I could see the spelling/grammar

Use edit paste special unformatted text (or the following macro)
to paste into your document.

Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
End
oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm


crossroads wrote:
Under Tools/language/set language I have unchecked "do not check
spelling or grammar" on my default Word template. I also have this
default on a special report template. I often have to copy and
paste other documents I receive from external sources into this
special report template and before I do, I make sure I set these
other documents to uncheck their "do not check..." The problem is
that after I copy and paste into my special report template, the
"do not check spelling or grammar" box gets mysteriously checked.
I'm continually having to go and uncheck it so I can see the
spelling and grammatical errors.
Any help please?




  #7  
Old April 15th, 2008, 08:41 AM posted to microsoft.public.word.docmanagement
Graham Mayor
external usenet poster
 
Posts: 18,297
Default setting a fixed default to check spelling and grammar

Does it work if you add force the setting in the macro? eg

Sub PasteUnf()
On Error GoTo oops
With Selection
.NoProofing = False
.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
End With
Exit Sub
oops:
Beep
End Sub

If not I haven't a clue as I can't reproduce the problem

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



crossroads wrote:
thanks Graham but pasting in Safe mode doesn't work either.

That is not normal behaviour. The proofing settings are associated
with the text. Pasting as unformatted should cause the pasted text
to adopt the format at the destination. If that has the language
parameter you require then so should the pasted text, regardless of
how is was previously formatted.

There may be some mechanism interfering with the required action. To
attempt to verify this start Word in its safe mode by holding the
CTRL key whilst starting and acknowledge the prompt which ensues.

Does the paste work correctly in that mode? If it does, see
http://www.gmayor.com/what_to_do_when_word_crashes.htm then
http://word.mvps.org/FAQs/AppErrors/...artingWord.htm.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org




crossroads wrote:
From a few minutes ago ... I just realised what you meant. I pasted
(special) the document unformatted as you said into my template
having made sure that the language/spell checks were right. After I
pasted I still had to uncheck so I could see the spelling/grammar

Use edit paste special unformatted text (or the following
macro) to paste into your document.

Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
End
oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm


crossroads wrote:
Under Tools/language/set language I have unchecked "do not check
spelling or grammar" on my default Word template. I also have
this default on a special report template. I often have to copy
and paste other documents I receive from external sources into
this special report template and before I do, I make sure I set
these other documents to uncheck their "do not check..." The
problem is that after I copy and paste into my special report
template, the "do not check spelling or grammar" box gets
mysteriously checked. I'm continually having to go and uncheck it
so I can see the spelling and grammatical errors.
Any help please?



  #8  
Old April 16th, 2008, 02:44 AM posted to microsoft.public.word.docmanagement
crossroads
external usenet poster
 
Posts: 33
Default setting a fixed default to check spelling and grammar

Hi Graham - I know absolutely zero about macros so looks like I'm stuck with
the original problem which I had thought naively that there's be an easy fix
for. Thanks anyway
--
phil b
australia


"Graham Mayor" wrote:

Does it work if you add force the setting in the macro? eg

Sub PasteUnf()
On Error GoTo oops
With Selection
.NoProofing = False
.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
End With
Exit Sub
oops:
Beep
End Sub

If not I haven't a clue as I can't reproduce the problem

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



crossroads wrote:
thanks Graham but pasting in Safe mode doesn't work either.

That is not normal behaviour. The proofing settings are associated
with the text. Pasting as unformatted should cause the pasted text
to adopt the format at the destination. If that has the language
parameter you require then so should the pasted text, regardless of
how is was previously formatted.

There may be some mechanism interfering with the required action. To
attempt to verify this start Word in its safe mode by holding the
CTRL key whilst starting and acknowledge the prompt which ensues.

Does the paste work correctly in that mode? If it does, see
http://www.gmayor.com/what_to_do_when_word_crashes.htm then
http://word.mvps.org/FAQs/AppErrors/...artingWord.htm.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org




crossroads wrote:
From a few minutes ago ... I just realised what you meant. I pasted
(special) the document unformatted as you said into my template
having made sure that the language/spell checks were right. After I
pasted I still had to uncheck so I could see the spelling/grammar

Use edit paste special unformatted text (or the following
macro) to paste into your document.

Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
End
oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm


crossroads wrote:
Under Tools/language/set language I have unchecked "do not check
spelling or grammar" on my default Word template. I also have
this default on a special report template. I often have to copy
and paste other documents I receive from external sources into
this special report template and before I do, I make sure I set
these other documents to uncheck their "do not check..." The
problem is that after I copy and paste into my special report
template, the "do not check spelling or grammar" box gets
mysteriously checked. I'm continually having to go and uncheck it
so I can see the spelling and grammatical errors.
Any help please?




  #9  
Old April 16th, 2008, 06:12 AM posted to microsoft.public.word.docmanagement
Graham Mayor
external usenet poster
 
Posts: 18,297
Default setting a fixed default to check spelling and grammar

You don't have to know anything about macros to use one - see
http://www.gmayor.com/installing_macro.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



crossroads wrote:
Hi Graham - I know absolutely zero about macros so looks like I'm
stuck with the original problem which I had thought naively that
there's be an easy fix for. Thanks anyway

Does it work if you add force the setting in the macro? eg

Sub PasteUnf()
On Error GoTo oops
With Selection
.NoProofing = False
.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
End With
Exit Sub
oops:
Beep
End Sub

If not I haven't a clue as I can't reproduce the problem

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



crossroads wrote:
thanks Graham but pasting in Safe mode doesn't work either.

That is not normal behaviour. The proofing settings are associated
with the text. Pasting as unformatted should cause the pasted text
to adopt the format at the destination. If that has the language
parameter you require then so should the pasted text, regardless of
how is was previously formatted.

There may be some mechanism interfering with the required action.
To attempt to verify this start Word in its safe mode by holding
the CTRL key whilst starting and acknowledge the prompt which
ensues.

Does the paste work correctly in that mode? If it does, see
http://www.gmayor.com/what_to_do_when_word_crashes.htm then
http://word.mvps.org/FAQs/AppErrors/...artingWord.htm.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org




crossroads wrote:
From a few minutes ago ... I just realised what you meant. I
pasted (special) the document unformatted as you said into my
template having made sure that the language/spell checks were
right. After I pasted I still had to uncheck so I could see the
spelling/grammar

Use edit paste special unformatted text (or the following
macro) to paste into your document.

Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
End
oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm


crossroads wrote:
Under Tools/language/set language I have unchecked "do not check
spelling or grammar" on my default Word template. I also have
this default on a special report template. I often have to copy
and paste other documents I receive from external sources into
this special report template and before I do, I make sure I set
these other documents to uncheck their "do not check..." The
problem is that after I copy and paste into my special report
template, the "do not check spelling or grammar" box gets
mysteriously checked. I'm continually having to go and uncheck
it so I can see the spelling and grammatical errors.
Any help please?



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 10:00 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.