tags:

views:

134

answers:

1

My code says it can't find VK_NEXT. It can find all the other VK_ buttons just fine, but not this one. Is there another VK_ that let's me use the page down button?

+2  A: 

There is no VK_NEXT defined in KeyEvent. Perhaps you mean VK_PAGE_DOWN?

Paul Tomblin
That worked. Thanks.
William