WD2000: Applying Single Border to Selected Text Sets All Borders

ID: Q211576


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


SYMPTOMS

When you attempt to apply a single side border to a single character, word, or selection of text, either by clicking Borders and Shading (on the Format menu) or by using the Visual Basic for Applications Borders property, all borders are applied (top, bottom, left, and right).


CAUSE

In Word, all borders (top, bottom, left, and right) are applied to a single character, word, or selection of text.

For example, the following sample Visual Basic for Applications macro places a border around the second word in the document, although the command explicitly states to format the word with a top border only.


   Sub BorderWord()
      Documents.Add
      Selection.InsertBefore "One two three"
      ActiveDocument.Words(2).Borders(wdBorderTop).LineStyle = 7
   End Sub 
The "Add a Border" Help topic incorrectly states that you can add a border to any or all sides of selected text.

Additional query words: vb vba vbe

Keywords : kbdta kbmacroexample kbwordvba wd2000
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbprb


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