Path: utzoo!utgpu!watmath!maytag!watstat!dmurdoch From: dmurdoch@watstat.waterloo.edu (Duncan Murdoch) Newsgroups: comp.lang.pascal Subject: Re: Dual Output Keywords: general writeln's Message-ID: <61@maytag.waterloo.edu> Date: 2 Mar 89 02:38:16 GMT References: <435@lafcol.UUCP> Sender: daemon@maytag.waterloo.edu Reply-To: dmurdoch@watstat.waterloo.edu (Duncan Murdoch) Organization: U. of Waterloo, Ontario Lines: 10 Another idea for duplicating output would be to write a text file device driver (in Turbo Pascal v 4 or 5). It would be an output only driver that just wrote everything sent to it out twice. If you wanted duplicated output, you'd use AssignDup (or something) to link output to this file; if you wanted screen-only, you'd use AssignCrt; and for file-only, you'd use the regular Assign. After that, all writes to output would automatically do what you wanted. Duncan Murdoch