home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!caen!uwm.edu!csd4.csd.uwm.edu!randyd
- From: randyd@csd4.csd.uwm.edu (Randall Elton Ding)
- Newsgroups: comp.lang.pascal
- Subject: Re: reading alternate keys on ibm from turbo
- Date: 6 Nov 1992 19:55:14 GMT
- Organization: Computing Services Division, University of Wisconsin - Milwaukee
- Lines: 24
- Distribution: usa
- Message-ID: <1deij2INNnva@uwm.edu>
- References: <1dbruiINNbai@uwm.edu> <73862@hydra.gatech.EDU>
- NNTP-Posting-Host: 129.89.7.4
-
- In article <73862@hydra.gatech.EDU> gtd205a@prism.gatech.EDU (James Houghton Crouch) writes:
- >>procedure keyread (var ch: char; var alt: boolean);
- >> begin
- >> ch:= readkey;
- >> alt:= (ch=#0) and keypressed;
- >> if alt then ch:= readkey;
- >> end;
- >
- >I think that this program will also return the arrow
- >keys, PageUp, PageDown, and quite a few others.
- >
- >I'm pretty sure that TP firsts reads a #0 and then a code for these keys
- >too
-
- Yes, That was the whole purpose for posting that function.
- The origional question was "how do I read page up/page down ...etc..."!
- My keyread function does in fact read everything except function keys
- 11 and 12. Does anyone know how to read these two function keys
- from TP?
-
- randyd@csd4.csd.uwm.edu
-
-
-
-