Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.pagelayout
bagiu bagiu is offline
external usenet poster
 
Posts: 6
Default Style import error?

I want to import styles from one document to another. I know how I can do it,
but once the styles are imported, some of them do not seem to look like in
the original document. Help is appreciated. Thank you.
  #2   Report Post  
Posted to microsoft.public.word.pagelayout
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Style import error?

You will need to update the styles in the document CTRL+A then CTRL+Space to
re-apply the underlying style(s) i.e. the copied styles, to the text.

--

Graham Mayor - Word MVP

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




bagiu wrote:
I want to import styles from one document to another. I know how I
can do it, but once the styles are imported, some of them do not seem
to look like in the original document. Help is appreciated. Thank you.



  #3   Report Post  
Posted to microsoft.public.word.pagelayout
bagiu bagiu is offline
external usenet poster
 
Posts: 6
Default Style import error?

Thank you.

"Graham Mayor" wrote:

You will need to update the styles in the document CTRL+A then CTRL+Space to
re-apply the underlying style(s) i.e. the copied styles, to the text.

--

Graham Mayor - Word MVP

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




bagiu wrote:
I want to import styles from one document to another. I know how I
can do it, but once the styles are imported, some of them do not seem
to look like in the original document. Help is appreciated. Thank you.




  #4   Report Post  
Posted to microsoft.public.word.pagelayout
bagiu bagiu is offline
external usenet poster
 
Posts: 6
Default Style import error?

Thank you for your answer. Goind on with my original question, in my text
there are word written in blue rather than in black as it is the rest of the
text. After applying CTRL+A and then CTRL+Space, the entire text turns black.
How can I keep the words written in blue?

"Graham Mayor" wrote:

You will need to update the styles in the document CTRL+A then CTRL+Space to
re-apply the underlying style(s) i.e. the copied styles, to the text.

--

Graham Mayor - Word MVP

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




bagiu wrote:
I want to import styles from one document to another. I know how I
can do it, but once the styles are imported, some of them do not seem
to look like in the original document. Help is appreciated. Thank you.




  #5   Report Post  
Posted to microsoft.public.word.pagelayout
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Style import error?

The following macro will re-apply the document template and update the
styles in the document to match their configuration in that template, but
will retain the manual formatting and hyperlinks that probably account for
the blue text.

Sub ReApplyTemplate()
With ActiveDocument
sTemp = .AttachedTemplate.FullName
.UpdateStylesOnOpen = True
.AttachedTemplate = sTemp
.UpdateStylesOnOpen = False
End With
End Sub

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



bagiu wrote:
Thank you for your answer. Goind on with my original question, in my
text there are word written in blue rather than in black as it is the
rest of the text. After applying CTRL+A and then CTRL+Space, the
entire text turns black. How can I keep the words written in blue?

"Graham Mayor" wrote:

You will need to update the styles in the document CTRL+A then
CTRL+Space to re-apply the underlying style(s) i.e. the copied
styles, to the text.

--

Graham Mayor - Word MVP

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




bagiu wrote:
I want to import styles from one document to another. I know how I
can do it, but once the styles are imported, some of them do not
seem to look like in the original document. Help is appreciated.
Thank you.





  #6   Report Post  
Posted to microsoft.public.word.pagelayout
bagiu bagiu is offline
external usenet poster
 
Posts: 6
Default Style import error?

When do I have to run the macro? Before applying CTRL+A and CTRL+Space or
before that? Thanks.

"Graham Mayor" wrote:

The following macro will re-apply the document template and update the
styles in the document to match their configuration in that template, but
will retain the manual formatting and hyperlinks that probably account for
the blue text.

Sub ReApplyTemplate()
With ActiveDocument
sTemp = .AttachedTemplate.FullName
.UpdateStylesOnOpen = True
.AttachedTemplate = sTemp
.UpdateStylesOnOpen = False
End With
End Sub

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



bagiu wrote:
Thank you for your answer. Goind on with my original question, in my
text there are word written in blue rather than in black as it is the
rest of the text. After applying CTRL+A and then CTRL+Space, the
entire text turns black. How can I keep the words written in blue?

"Graham Mayor" wrote:

You will need to update the styles in the document CTRL+A then
CTRL+Space to re-apply the underlying style(s) i.e. the copied
styles, to the text.

--

Graham Mayor - Word MVP

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




bagiu wrote:
I want to import styles from one document to another. I know how I
can do it, but once the styles are imported, some of them do not
seem to look like in the original document. Help is appreciated.
Thank you.




  #7   Report Post  
Posted to microsoft.public.word.pagelayout
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Style import error?

Instead of!

--

Graham Mayor - Word MVP

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



bagiu wrote:
When do I have to run the macro? Before applying CTRL+A and
CTRL+Space or before that? Thanks.

"Graham Mayor" wrote:

The following macro will re-apply the document template and update
the styles in the document to match their configuration in that
template, but will retain the manual formatting and hyperlinks that
probably account for the blue text.

Sub ReApplyTemplate()
With ActiveDocument
sTemp = .AttachedTemplate.FullName
.UpdateStylesOnOpen = True
.AttachedTemplate = sTemp
.UpdateStylesOnOpen = False
End With
End Sub

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



bagiu wrote:
Thank you for your answer. Goind on with my original question, in my
text there are word written in blue rather than in black as it is
the rest of the text. After applying CTRL+A and then CTRL+Space, the
entire text turns black. How can I keep the words written in blue?

"Graham Mayor" wrote:

You will need to update the styles in the document CTRL+A then
CTRL+Space to re-apply the underlying style(s) i.e. the copied
styles, to the text.

--

Graham Mayor - Word MVP

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




bagiu wrote:
I want to import styles from one document to another. I know how I
can do it, but once the styles are imported, some of them do not
seem to look like in the original document. Help is appreciated.
Thank you.



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Getting error while import .EPS files from network - word2003 RANG Microsoft Word Help 0 July 30th 08 12:36 PM
import a style Ruth N New Users 1 October 23rd 06 09:18 AM
Word 2007 Figure Caption gets error "Figure Error! Style not defin Andrei Csibi Page Layout 0 June 18th 06 07:13 AM
Is it possible to import a template or style sheet on an existing leinad Microsoft Word Help 1 May 23rd 06 09:20 AM
Office 2003 generates an error when i try to import JPEG files fr. Dovid Microsoft Word Help 6 April 15th 05 09:49 PM


All times are GMT +1. The time now is 05:09 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"