I know I've seen hwo to do this but I want to capture ALT-X or ALT-Z or any alt key like that...
Can I just get a scancode or do I need to know the ALT key was pressed?
Right now I can get other keys:
------------------
Scott Turchin
MCSE, MCP+I
Computer Creations Software
http://www.tngbbs.com/ccs
Can I just get a scancode or do I need to know the ALT key was pressed?
Right now I can get other keys:
Code:
I = WaitKey$ Select Case Asc(I) Case 13,121,89 End Select
Scott Turchin
MCSE, MCP+I
Computer Creations Software
http://www.tngbbs.com/ccs
Comment