home *** CD-ROM | disk | FTP | other *** search
/ TopWare Tools / TOOLS.iso / tools / top1415 / hexkey.chs < prev    next >
Encoding:
Text File  |  1992-10-25  |  319 b   |  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. }