Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watnot!watmath!clyde!rutgers!princeton!phoenix!macbeth!tlxprs!roy From: roy@tlxprs.UUCP Newsgroups: comp.sys.ibm.pc Subject: Re: CursOff? Message-ID: <115@tlxprs.UUCP> Date: Thu, 26-Mar-87 15:24:56 EST Article-I.D.: tlxprs.115 Posted: Thu Mar 26 15:24:56 1987 Date-Received: Sat, 28-Mar-87 07:27:50 EST References: <3580001@nucsrl.UUCP> Reply-To: roy@tlxprs.UUCP (Roy Feldman) Organization: Telexpress, Inc. Willingboro, NJ Lines: 17 Summary: Turning Cursor off!!! In article <3580001@nucsrl.UUCP> fourer@nucsrl.UUCP (Robert Fourer) writes: >Does anyone know how to stop the IBM PC cursor from blinking on and off? >I'm particularly interested in stopping (or at least slowing) it in >WordPerfect, but any information would be useful. I vaguely recall >seeing an ad for a program that claimed to do this. To turn the cursor off use Bios interrupt 10H MOV AX,100h MOV CX,400H INT 10H To turn normal cursor back on MOV AX,100H MOV CX,10FH INT 10H That's it....