I need ascii number for forward keys. i found it but it has two number examble first -32 and second 80?? please help

Recommended Answers

All 4 Replies

never heard of a forward key

There are four arrow keys. Each gives two bytes, the first one is 0 or 0x00 in hex.

The second byte determines which arrow key: 0x48, 0x4b, 0x4d, 0x50
for up, left, right and down, respectively.

You should download an ASCII char and key scan code chart, if you don't have one.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.