With reference to my last post regarding this issue on: 03/11/10
We have created a table of documents (about 400) that one can select using check boxes. These are then passed on to a simple routine in a "Print" command button as follows:
if CA0001 0306 = "T" then {MergeFilePrint("Z:\SESAME\DATA\FORMS\CA0001 0306.rtf","rtf","","","","","")}
We had a problem where the temporary.rtf file would remain available and Sesame would post an error saying so thereby halting the print process. We fixed that by adding the recommended code:
If FileExists("temporary.rtf") Then
{
FileDelete("temporary.rtf")
}
Thank you Ray!

However, a new problem has cropped up and a in the midst of printing a pop up will halt the print process stating that "temporary.rtf" exists do you want to overwrite the file. This does not ruin the batch print process but does interrupt it till the user clicks "yes" (by all means, please do and so forth).
As always...any and all help is heartily appreciated...
Thanks you,
Cliff