How to Use the Query Designer to Send Output to a Text FileLast reviewed: October 31, 1995Article ID: Q138917 |
The information in this article applies to:
SUMMARYBy using the Query Designer in Visual FoxPro, you can direct the output of the query to an ASCII text file. This article will outline the steps necessary to accomplish this.
MORE INFORMATION
Step-by-Step Procedure
in step 2. Note that the output is also echoed to the screen. The following code example can be used to suppress the output to the screen: DEFINE WINDOW win1 FROM 1,1 TO 5,5 ACTIVATE WINDOW win1 HIDE WINDOW win1 DO QUERY1.QPR &&replace QUERY1.QPR with your query name RELEASE WINDOW win1 When this code is run, the output of the query will be sent to the file specified in step 2, and no output will be displayed on the screen. REFERENCESFor more information on creating queries using the Query Designer, please see Chapter 6 in the "Visual FoxPro User's Guide."
|
Additional reference words: 3.00 VFoxWin ASCII TEXT RQBE
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |