D
Dave Hawks
I want to automatically export a file every day using the timer property of a
form.
How can i do this without overwriting the existing file?. Can anyone suggest
some code that will rename the file as part of the save routine without
manual intervention.
Here is the current code I am using.
Private Sub Form_Timer()
DoCmd.OutputTo acOutputReport, "repToday", acFormatHTML,
"C:\WebsiteUploads\repToday.html", Yes, ""
form.
How can i do this without overwriting the existing file?. Can anyone suggest
some code that will rename the file as part of the save routine without
manual intervention.
Here is the current code I am using.
Private Sub Form_Timer()
DoCmd.OutputTo acOutputReport, "repToday", acFormatHTML,
"C:\WebsiteUploads\repToday.html", Yes, ""