November 28, 200322 yr Can I export to a file where the name is automaticly formed in a format with date/time as in MM-DD-YY-HH-MM and if so, how can I do this? John
November 29, 200322 yr Author I have been trying for some time to do this with the Send Message script step but did not succeed. So the obvious question is, how do I make that work or where can I find the info that tells me that? John
November 30, 200322 yr Since I use a Mac, I'm not the best one to answer this question. My guess is that you may need to create a batch file on the fly with a Rename command in it like so: Rename c:myfolderDefault.txt c:myFolder2003-12-01-01-23.txt You would create the batch file by exporting a single record with a single field containing the data. the Field would be calculated like this: cBatchFileData = "Rename c:myfolderDefault.txt c:myFolder" & DateToText(Status(CurrentDate)) & "-" & Substitute(TimeToText(Status(CurrentTime)),":","-") & ".txt" Then you use the send message step to execute the batch file.
Create an account or sign in to comment