We store files locally on the hard drive, so no multi-user problem. I suppose I can create a filename with the date/time stamp, and a startup routine that deletes all c:\temp\Del*.pdf reports when it loads.
Karen > I think you probably _do_ want to change the name of the report each > time. Among other things, if you reuse the same name it's not multi-user > (or, > at least, multi-session) safe. > > > > Two solutions are: > > > 1. Put the temporary report into the windows temp directory (using > FILENAME(0) to get the name) where Windows can delete it if necessary. > > > 2. Storing the file name and creation date in a table in the database and > including a startup routine that deletes all files more than X hours old. > > > -- > Larry > > >

