ID: Q135297
The information in this article applies to:
When you run a macro that includes the ChDir WordBasic command, you get the following error message
   Microsoft Word Err=1078
   This file could not be found <Filename>
The following macro fails because the ChDir command does not recognize a universal naming convention (UNC) path.
Sub Main
End Sub
Microsoft has confirmed this to be a problem in Word for Windows 95, version 7.0. Microsoft is researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
Use the following WordBasic macro to access the UNC path. You can then change to the folder and select your file. The macro uses the Windows API SetCurrentDirectoryA function to change the folder. Note: The SetCurrentDirectoryA function name is case sensitive.
Declare Sub ChDirUNC Lib "kernel32" Alias "SetCurrentDirectoryA"(Path$)
Sub MAIN
End Sub
KBCategory: kbusage kberrmsg kbmacro buglist7.0 KBSubcategory: kbmacroexample Additional reference words: 7.0 word95 macro change directory chdir word7 winword wordbasic word basic
Keywords          : kbmacroexample 
Version           : 7.0
Platform          : WINDOWSLast Reviewed: February 6, 1998