Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!usc!samsung!uunet!lll-winken!xanth!cs.odu.edu!popkin From: popkin@osric.cs.odu.edu (Brian N. Popkin) Newsgroups: comp.lang.pascal Subject: Turbo Pascal v6.0 crt bug Message-ID: <1991May9.161613.26915@cs.odu.edu> Date: 9 May 91 16:16:13 GMT Sender: usenet@cs.odu.edu (Usenet News Poster) Organization: Old Dominion University, Norfolk, VA Lines: 40 Nntp-Posting-Host: osric.cs.odu.edu In the following program the chkcbreak doesn't stop me from breaking the program. I press break once while its running, its does nothing, if I press it a second time it breaks and exits the program... is this a bug? program test(input,output); uses crt; var dummy : char; CheckBreak : Boolean; begin CheckBreak := FALSE; writeln; writeln('Hey....Press Enter'); readln(dummy); writeln('Hey....Press Enter'); readln(dummy); end. I have also tried CRT.CheckBreak := False.. The manual says of you set it to false it should not allow the user to break the program.. Brian *-----------------------------------------------------------------------------* * Brian Popkin - Computer Science Major - Systems Programing * * Old Dominion University - Norfolk, Virginia USA * * * * Others Areas Of Interest: Artificial Intelligence, Expert Systems, * * Networks, And Telecommunications * * * * Email Address: popkin@cs.odu.ede - popkin@xanth.cs.odu.edu *