WD2000: Unwanted Tab Stop Inserted in Outline Numbered Scheme

ID: Q211406


The information in this article applies to:
  • Microsoft Word 2000


SYMPTOMS

After you customize an outline numbered scheme, promoting or demoting a numbered paragraph may insert an unwanted tab stop between the number and the beginning of the paragraph text. Attempting to use default tab stop settings (on the Format menu, click Tabs) by clearing all custom tab stops results in the custom tab stops being cleared only temporarily.

NOTE: To promote or demote a numbered paragraph, use the Increase Indent or Decrease Indent button.

When you do this, the tab space between the number and the beginning of the paragraph text will be different from the way it was formatted in the customized outline numbered scheme.


WORKAROUND

To work around this problem, use one of the following methods:

Method 1: Clear All Tabs Before Applying the Numbering

  1. On the Format menu, click Tabs.


  2. Click Clear All, and then click OK.


  3. Apply the numbering.


Method 2: Clear All Tabs After Applying the Numbering

  1. Select the Outline Numbered list.


  2. On the Format menu, click Tabs.


  3. Click Clear All, and then click OK.


NOTE: This is not a permanent resolution. If you make additional changes to promote or demote paragraphs, the unwanted tab stops are inserted again.

Method 3: Use a Macro to Clear Tabs and Promote/Demote Levels

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact a Microsoft Certified Solution Provider or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Solution Providers, please see the following page on the World Wide Web:

http://www.microsoft.com/mcsp/
For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

http://www.microsoft.com/support/supportnet/overview/overview.asp


The following Microsoft Visual Basic for Applications sample code can be used to promote or demote levels and to clear the unwanted tab stops.


Sub ListOutdent()
   Selection.Range.ListFormat.ListOutdent
   Selection.ParagraphFormat.TabStops.ClearAll
   ActiveDocument.DefaultTabStop = InchesToPoints(0.5)
End Sub 


Sub ListIndent()
   Selection.Range.ListFormat.ListIndent
   Selection.ParagraphFormat.TabStops.ClearAll
   ActiveDocument.DefaultTabStop = InchesToPoints(0.5)
End Sub 


STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article.

Additional query words: list multilevel

Keywords : kbdta kbnumbering wd2000
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbbug


Last Reviewed: September 13, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.