I'm using the following code to Output a report as a Text file, saving it as the name in an unbound textbox on the form
DoCmd.OutputTo acReport, "rptAddCost", "MS-DOSText(*.txt)", "C:\Documents and Settings\temp\Desktop\(" & Me!TxtSupName & ").txt", False, ""
all works fine but what I'd...