Can't Open Selected Document Using FileFind MacroLast reviewed: February 5, 1998Article ID: Q135590 |
The information in this article applies to:
SYMPTOMSThe Open button does not open the selected file after you run a WordBasic macro using the FileFind command; instead; it closes the Find File dialog box.
Steps to Reproduce ProblemTo demonstrate this behavior, run the following macro:
Sub MAIN Dim dlg As FileFind GetCurValues dlg dlg.SearchPath = "c:\my documents" dlg.Name = "*.doc" x = Dialog(dlg) FileFind dlg End Sub STATUSMicrosoft has confirmed this to be a problem in Word for Windows 95 version 7.0. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
WORKAROUNDBecause the FileFind command does not allow you to open a document, create another macro that uses the ChDir and FileOpen commands to set a search path for specific document names/types. For example:
Sub MAIN ChDir "C:\My Documents" Dim dlg As FileOpen dlg.Name = "*.doc" x = Dialog(dlg) FileOpen dlg 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 kbmacro buglist7.0
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |