ACC97: Can't Use OutputTo Method with Form or Report ModulesLast reviewed: August 29, 1997Article ID: Q162075 |
The information in this article applies to:
SYMPTOMSModerate: Requires basic macro, coding, and interoperability skills. When you try to output a form or report module to a text file using the OutputTo method in Visual Basic for Applications, you may receive the following error message:
Microsoft Access Run-time error '2501' The OutputTo action was canceled. You used a method of the DoCmd object to carry out an action in Visual Basic, but then clicked Cancel in a dialog box. For example, you used the Close method to close a changed form, then clicked Cancel in the dialog box that asks if you want to save the changes you made to the form. CAUSEYou cannot output form or report modules using the OutputTo method in Visual Basic for Applications. Form or report modules are class modules containing code that is local to the form or report. They do not appear in the Database window as standard modules do. Only modules that appear in the Database window can be output by using the OutputTo method.
RESOLUTIONWhen you use the OutputTo method, only output standard modules and class modules that are not associated with any form or report. NOTE: A workaround for this is to copy all the code from the object module and paste it into a word processing document, and then save the word processing document as a text file.
MORE INFORMATIONThe "OutputTo" topic in Microsoft Access Help states that you can output a module (standard or class) to a file in MS-DOS Text format. However, the only class modules that you can output are those which appear on the Modules tab in the Database window.
Steps to Reproduce Behavior
REFERENCESFor more information about using the OutputTo method to output a module, search the Help Index for "OutputTo," and then "OutputTo Method" or ask the Microsoft Access 97 Office Assistant. Keywords : kberrmsg kbprg Version : 97 Platform : WINDOWS Hardware : x86 Issue type : kbdocerr |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |