SYMPTOMS
After you save a Microsoft Word 2000 document as Word 6.0/95, when you try to apply a double-line border to a paragraph, the following message appears:
This feature is disabled because it is not compatible with Microsoft Word 6.0/95.
NOTE: This problem does not occur when you open a Word document created in Microsoft Word 6.0 for Windows or Microsoft Word for Windows 95. However, if you save the document in Word 2000 and retain the document as a Word 6.0/95 document, this problem occurs.
WORKAROUND
Use one of the following methods appropriate for your situation to work around this problem:
Method 1: Apply Double-Line Border Before Saving As Word 6.0/95
Apply the double-line border before you save your Word document as Word 6.0/95, using the following steps:
- Select the text (paragraph) to which you want to apply the double-line border.
- On the Format menu, click Borders and Shading.
- On the Borders tab, click to select the double-line border in the Style list.
- Change the Apply to box to Paragraph.
- Click OK.
- On the File menu, click Save As.
- In the Save As dialog box, change the Save as type box to Word 6.0/95. In the File name box, type a name for your Word document and then click Save.
Method 2: Create a Macro to Apply the Double-Line Border
Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers 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 requirements.
For more information about Office Automation, please visit the Office Development support site at:
For more information about how to use the sample code in this article, click
the article number below to view the article in the Microsoft Knowledge
Base:
212536
OFF2000: How to Run Sample Code from Knowledge Base Articles
The following sample macro places a double-line border around the selected paragraph in your Word 6.0/95 document:
Sub DoubleBorder()
With Selection.ParagraphFormat
With .Borders(wdBorderLeft)
.LineStyle = wdLineStyleDouble
End With
With .Borders(wdBorderRight)
.LineStyle = wdLineStyleDouble
End With
With .Borders(wdBorderTop)
.LineStyle = wdLineStyleDouble
End With
With .Borders(wdBorderBottom)
.LineStyle = wdLineStyleDouble
End With
End With
End Sub