home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / bingo300.zip / HEXKEY.CHS < prev    next >
Text File  |  1992-10-18  |  319b  |  11 lines

  1. /* this routine functions the same as HEXKEY.COM
  2. /* it displays the hex and decimal value of a keystroke
  3. {     
  4.    int i;
  5.    msg("Press any key ... (Escape exits)");
  6.    i=getkey();
  7.    while((i%256)!=27){
  8.       msg("Value is %04lx [%06ld] ... Press another key ... (Escape exits)",i,i)
  9.       i=getkey();
  10.    }
  11. }