CMM2: Font height?


Author Message
capsikin
Guru

Joined: 30/06/2020
Location: Australia
Posts: 341
Posted: 02:16am 01 Aug 2020      

  KeepIS said  For some reason the Keydown function is only returning the Linefeed character.

dim KeyStr as string
cls
do
 KeyStr=inkey$
 If KeyStr <> "" then
  print KeyStr;:print asc(KeyStr)
 endif
loop until asc(KeyStr)=27 'esc key


USB keyboard or terminal program?

There's an "OPTION CRLF mode" that's suppose to affect what the USB keyboard sends. I don't know if it changes keydown, maybe only inkey$
Edited 2020-08-01 12:17 by capsikin