Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Backspace Key
#1
Hi
I am working with some keydown event codes, but I can't seem to find the key code for the backspace key. 
Could you kindly advise me? Thank you!

Code:
#win32
set window "KEYDOWN",200,100,false,4
set redraw off

while not keydown(KEY_ESCAPE)
    set color 0,0,0
    cls
   
    set color 255,255,255
    set caret 10,10
    if keydown(KEY_INSERT) wln "Insert"
    if keydown(KEY_DELETE) wln "Delete"
    if keydown(KEY_HOME) wln "Home"
    if keydown(KEY_END, true) wln "End"
    if keydown(KEY_PAGE_UP) wln "Page Up"
    if keydown(KEY_PAGE_DOWN) wln "Page Down"
    'if keydown(KEY_BACKSPACE) wln "Backspace"
   
    redraw
    fwait 10
wend
Reply


Messages In This Thread
Backspace Key - by 1micha.elok - 04-23-2025, 03:22 AM
RE: Backspace Key - by johnno56 - 04-23-2025, 06:32 AM
RE: Backspace Key - by Marcus - 04-23-2025, 07:56 PM
RE: Backspace Key - by Marcus - Yesterday, 01:37 PM
RE: Backspace Key - by 1micha.elok - 8 hours ago
RE: Backspace Key - by johnno56 - 25 minutes ago

Forum Jump:


Users browsing this thread: 1 Guest(s)