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  

"Char" is shown in Format list as para format for ALL styles.



 
 
Thread Tools Display Modes
  #1  
Old September 2nd, 2005, 12:58 AM
Sherry
external usenet poster
 
Posts: n/a
Default "Char" is shown in Format list as para format for ALL styles.

In MS Word 2003, the names of paragraph formats are no longer shown in the
Format list. Instead, regardless of the name of the format, "Char" is
displayed in the format list, both on the Formatting toolbar and in the
Styles and Formatting list that displays on the right side of the screen.
This has happened in three documents that I have inherited. Previously, the
name of the paragraph format was displayed as expected.
  #2  
Old September 2nd, 2005, 08:05 PM
Klaus Linke
external usenet poster
 
Posts: n/a
Default "Char" is shown in Format list as para format for ALL styles.

"Sherry" wrote:
In MS Word 2003, the names of paragraph formats are no
longer shown in the Format list. Instead, regardless of the
name of the format, "Char" is displayed in the format list,
both on the Formatting toolbar and in the Styles and
Formatting list that displays on the right side of the screen.
This has happened in three documents that I have inherited.
Previously, the name of the paragraph format was displayed
as expected.



Hi Sherry,

First, I'm make sure it is a problem with the documents, and not with Word:

Create a new document, type in a paragraph, and format it in "Heading 1".
Then select a few characters in that paragraph and format those as "Heading
2".

Word has now created a character style (Char/Link style) "Heading 2 Char",
but displays the paragraph style "Heading 2" instead.

If you should see "Heading 2 Char" in the style dropdown or the taskpane,
it's likely a problem in Word.
You might try "Detect and Repair" from the help menu.

In case it's a problem with some documents only, you could try to get rid of
the Char styles with a macro.
You may loose some formatting, though.

Sub DeleteLinkStyles()
' The formatting that was done by the Link style is removed, too!
Dim myStyle As Style
For Each myStyle In ActiveDocument.Styles
If myStyle.Type = wdStyleTypeCharacter Then
If myStyle.LinkStyle _
ActiveDocument.Styles(wdStyleNormal) Then
' MsgBox myStyle.LinkStyle
myStyle.LinkStyle = _
ActiveDocument.Styles(wdStyleNormal)
' To only remove Char styles:
' If Right(myStyle.NameLocal, 4) = "Char" Then
myStyle.Delete
' End If
End If
End If
Next myStyle
End Sub

Regards,
Klaus


 




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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Toolbars, Drop-Down Menus Rick New Users 1 September 21st, 2005 11:17 AM
Retaining a hyperlink field format in a pivot table list JRW General Discussion 0 August 2nd, 2005 07:00 PM
E-mail Display name is wrong Jane Nangle Contacts 9 February 4th, 2005 10:05 AM
email format Lloyd General Discussion 1 June 16th, 2004 03:42 AM
Styles - hopefully the last question! Tom Smith New Users 6 May 9th, 2004 04:41 PM


All times are GMT +1. The time now is 08:47 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.