G goni07 New member Local time Today, 08:50 Joined Jan 22, 2008 Messages 9 Nov 26, 2010 #1 I have make report but my printer print file just .inp or txt how can I transfer from report to .txt or .inp Last edited by a moderator: Nov 27, 2010
I have make report but my printer print file just .inp or txt how can I transfer from report to .txt or .inp
John Big Booty AWF VIP Local time Today, 16:50 Joined Aug 29, 2005 Messages 8,262 Nov 27, 2010 #2 Re: How Can I Transfer raport to txt file Have a look at the DoDmd.OutputTo method, see also this link. It's going to look something like; Code: DoCmd.OutputTo acOutputReport, "YourReportName, acFormatTXT, "YourOutPutFileName.txt"
Re: How Can I Transfer raport to txt file Have a look at the DoDmd.OutputTo method, see also this link. It's going to look something like; Code: DoCmd.OutputTo acOutputReport, "YourReportName, acFormatTXT, "YourOutPutFileName.txt"
G goni07 New member Local time Today, 08:50 Joined Jan 22, 2008 Messages 9 Nov 27, 2010 #3 Re: How Can I Transfer raport to txt file thank you very much it funksionirt very good but I will this text file tu save in Folder ex. filepath = "C:\Temp but i dont know how can you help me how to save this text file thank you
Re: How Can I Transfer raport to txt file thank you very much it funksionirt very good but I will this text file tu save in Folder ex. filepath = "C:\Temp but i dont know how can you help me how to save this text file thank you
John Big Booty AWF VIP Local time Today, 16:50 Joined Aug 29, 2005 Messages 8,262 Nov 29, 2010 #4 use; Code: DoCmd.OutputTo acOutputReport, "YourReportName", acFormatTXT, "C:\Temp\YourOutPutFileName.txt"
use; Code: DoCmd.OutputTo acOutputReport, "YourReportName", acFormatTXT, "C:\Temp\YourOutPutFileName.txt"
G goni07 New member Local time Today, 08:50 Joined Jan 22, 2008 Messages 9 Nov 29, 2010 #5 thank you very much it work excellent thank