ACC97: Can't Use OutputTo Method with Form or Report Modules

ID: Q162075

The information in this article applies to:

SYMPTOMS

Moderate: Requires basic macro, coding, and interoperability skills.

When you use the OutputTo method in Visual Basic for Applications to output a form or report module to a text file, 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.

CAUSE

You cannot use the OutputTo method in Visual Basic for Applications to output form or report modules. Form or report modules are class modules that contain code that is local to the form or report. They do not appear in the Database window as standard modules do. You can output only modules that appear in the Database window with the OutputTo method.

RESOLUTION

When 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 form or report module and paste it into a word processing document; then you can save the word processing document as a text file.

MORE INFORMATION

The "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 that appear on the Modules tab in the Database window.

Steps to Reproduce Behavior

1. Open the sample database Northwind.mdb.

2. Press CTRL+G to display the Debug window.

3. Type the following in the Debug window:

     docmd.OutputTo acModule, "Employees", acFormatTXT, "C:\MyText.txt"

   Note that you receive the error message mentioned in the "Symptoms"
   section.

REFERENCES

For 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.

Additional query words:

Keywords          : kberrmsg kbprg
Version           : 97
Platform          : WINDOWS
Hardware          : x86

Last Reviewed: November 20, 1998