CMM2: Font height?


Author Message
capsikin
Guru

Joined: 30/06/2020
Location: Australia
Posts: 341
Posted: 12:51am 01 Aug 2020      

  mkopack73 said  Also, how does one detect the enter key when using INKEY$ or KEYDOWN() ???


For KEYDOWN() I got a value of 10, using this program to check one or two keys:
do
 do
 loop until keydown(0) > 0
 if keydown(0) > 1 then print keydown(2);" and ";
 print keydown(1)
loop