I hate to sound like an idiot but is the keypad functionality broken in blitz? I know it isn't my system because Calculator works fine but the following code doesn't. Is there something I have to turn on prior to using KeyHit?
Graphics 1024, 768
Global y:Int = 10
While Not KeyHit(KEY_ESCAPE)
If KeyHit(KEY_2)
DrawText "keyboard", 10, y
y :+ 15
End If
If KeyHit(KEY_NUM2)
DrawText "keypad", 10, y
y :+ 15
End If
Flip
Wend
Graphics 1024, 768
Global y:Int = 10
While Not KeyHit(KEY_ESCAPE)
If KeyHit(KEY_2)
DrawText "keyboard", 10, y
y :+ 15
End If
If KeyHit(KEY_NUM2)
DrawText "keypad", 10, y
y :+ 15
End If
Flip
Wend