ACC2000: No Prompt for Parameter Value Exporting Form with OutputToID: Q210607
|
You are not prompted to enter a parameter value when you output a form to text if the form is bound to a query that contains an invalid form control reference in its Criteria row. However, the text file that is created does not contain any data.
This behavior occurs if you use implicit form control referencing in the query. For example:
Forms![FormName]![ControlName]
To ensure that the text file that is created contains data, use explicit
form control referencing in your query, or use the Value
property of the control. For example:
Microsoft has confirmed this to be a problem in Microsoft Access.
You can use the OutputTo action or method to output the data in a specified Microsoft Access database object (a datasheet, form, report, or module) to a file in Microsoft Excel (*.xls), MS-DOS text (*.txt), or rich-text (*.rtf) format.
Forms![Form100]![Customer]Note that the query contains criteria that contains an invalid reference to a control called Customer.
Sub Test()
DoCmd.OutputTo acOutputForm, "Form100", acFormatTXT, "C:\Junk.txt"
End Sub
Additional query words: pra
Keywords : kbdta OtpOthr
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: May 13, 1999