Platforms to show: All Mac Windows Linux Cross-Platform

FAQ - Graphics.How to catch delete key?

Answer: The following is the code in keydown event catches delete or backspace keys.
Example
Function KeyDown(Key As String) As Boolean
if asc(key) = 8 or asc(key) = 127 then
MsgBox "Delete"
Return true
end if
End Function

See also:


The biggest plugin in space...