Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!ucbvax!pasteur!ames!elroy!usc!orion.cf.uci.edu!uci-ics!zardoz!dhw68k!arcturus!mitch From: mitch@arcturus.UUCP (Mitchell S. Gorman) Newsgroups: comp.lang.pascal Subject: Re: Pascal problem Summary: No problem. Message-ID: <4978@arcturus> Date: 9 Jun 89 18:16:52 GMT References: <19188@cup.portal.com> Organization: Rockwell International, Anaheim, CA Lines: 19 In article <19188@cup.portal.com>, Jason_Joshua_Irwin@cup.portal.com writes: > I am trying to write a pascal program using Turbo 4.0 . The program works fine > but I want the user not to be able to exit with a control break. Is there > any way I can cut the control break key off? Any help would be welcomed very > much. > Thanks in advance, > -Jason Include the CRT unit, and make the following assignment: checkbreak:=false; That oughta do it! Mitch @ Rockwell, Anaheim Disclaimer: CheckBreak should have been declared in the System unit!!