Here is what Im trying to do in Access:
I created a few command buttons that have the number 1, 2, 3, 4 on it, like a keypad or a calculator. When I press the button I want it to give a value (constant) of 1, 2, 3, 4, etc. At the same time if I press 1 and 4 on the keypad, Id like it to indicate 14 or if I press 9 and 8 I would get 98.
What I'm trying to do is:
commandButton1 = 10 * (number pad system stated above) + commandButtonEnter = 0
and/or
commandButton2 = 20 * (number pad system stated above) + commandButtonEnter = 0
and/or
commandButton 3 = 30 * (number pad system stated above) + commandButtonEnter = 0
= Total
I created a few command buttons that have the number 1, 2, 3, 4 on it, like a keypad or a calculator. When I press the button I want it to give a value (constant) of 1, 2, 3, 4, etc. At the same time if I press 1 and 4 on the keypad, Id like it to indicate 14 or if I press 9 and 8 I would get 98.
What I'm trying to do is:
commandButton1 = 10 * (number pad system stated above) + commandButtonEnter = 0
and/or
commandButton2 = 20 * (number pad system stated above) + commandButtonEnter = 0
and/or
commandButton 3 = 30 * (number pad system stated above) + commandButtonEnter = 0
= Total