I think what you are asking is how can you view the exported ASCII report from within your VFP app. If that is correct, you must remeber the newly created file is no longer a FoxPro formatted report. But is a simple ASCII text file. You can still view the file however.
Here are few suggestion to view the file:
1. Use the "RUN" command to load NotePad.exe and pass the the text file as a parameter:
run c:\windows\notepad.exe c:\myreport.txt
2. Convert the text file to a string using the FILETOSTR() function and then display the text in the main FoxPro window as in:
? FILETOSTR('c:\myreport.txt')
If this isn't really what you were asking please re-post your question and I'm sure you'll get the result your looking for (you know, like the Democrats in Florida).
Joe