Hi!
I need to read if any key is pressed (without form). In old QuickBasic, I have to write this:

start:

do
doevents
loop until INKEY$ <> ""

print #1,inkey$
goto start

inkey$ isn't avaible in VBasic. Then how???