[RESOLVED] Using Keys Help Please
When I want to get the user to move left and right I can use the command vbKeyLeft and vbKeyRight, but to get the user to use the keys A for Left and D for Right, what do I use in there place instead of vbKeyLeft, can I just use vbKeyRightA ?
Thank you.
Re: Using Keys Help Please
You have to understand what those things actually mean. Perhaps you should google "Constants".
In the mean time, just replace "vbKeyLeft" with "vbKeyA", and "vbKeyRight" with "vbKeyD".
chem