"Microsoft Word Err=1078 - This file could not be found..."Last reviewed: February 5, 1998Article ID: Q135297 |
The information in this article applies to:
SYMPTOMSWhen 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>where <Filename> represents the name of the document you are trying to open.
CAUSEThe following macro fails because the ChDir command does not recognize a universal naming convention (UNC) path.
Sub MainChdir "\\Servername\Shared" FileOpen "default.doc" End Sub STATUSMicrosoft 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.
RESOLUTIONUse 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 MAINS = ChDirUNC("\\servername\shared") ChDir "\\servername\shared" FileOpen "default.doc" End SubWARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR OWN RISK. Microsoft provides this macro code "as is" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.
|
KBCategory: kbusage kberrmsg kbmacro buglist7.0
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |