OPP: Can't See Word 6.0 Templates in Word for Windows 95 |
Q132719
After installing Word for Windows 95, you may not see your old Word 6.0 templates, even if you've already copied them to the MSOffice\Templates folder (where MSOffice is the folder in which you installed Office). When you click New on the File menu, the templates may not appear under any of the tabs.
There are two reasons for the templates not appearing on the lists:
This is an Office Preview Program problem and will not occur in the released version of the product.
Method 1: Rename the files and create a shortcut for each template:
Sub MAIN
x$ = InputBox$("Please enter the path to your old templates directory")
FileFind .SearchPath = x$, .Name = "*.dot"
NumFiles = CountFoundFiles()
While NumFiles <> 0
DirPos = InStr(FoundFileName$(NumFiles), "\")
NoDirFileName$ = FoundFileName$(NumFiles)
While DirPos
NoDirFileName$ = Mid$(NoDirFileName$, DirPos + 1)
DirPos = InStr(NoDirFileName$, "\")
Wend
If NoDirFileName$ <> "Normal.dot" Then
Name FoundFileName$(NumFiles) As LCase$(FoundFileName$(NumFiles))
Print "Now Renaming" + NoDirFileName$ + "to " +
LCase$(NoDirFileName$)
End If
NumFiles = NumFiles - 1
Wend
End Sub
Additional query words: word95 7.0 word7
Keywords : kbtemplate
Issue type :
Technology : kbWordSearch kbWordWSearch
|
Last Reviewed: December 14, 2000 © 2001 Microsoft Corporation. All rights reserved. Terms of Use. |