I found this answer in the forum, but I don't understand how to make the control button: Here is the information I found:
To provide this functionality in Access, attach this Event Procedure to the KeyPress event of your control.
Select Case KeyAscii
Case 43 ' Plus key
KeyAscii = 0
Screen.ActiveControl = Screen.ActiveControl + 1
Case 45 ' Minus key
KeyAscii = 0
Screen.ActiveControl = Screen.ActiveControl - 1
End Select
Well anyway, Could someone please tell me the steps from the beginning. The form I want to do this in is "ProblemDOS" , the field that I want to increase or decrease the date by 1 is the "Callbackdate". Please help me figure this out. Thank you.
To provide this functionality in Access, attach this Event Procedure to the KeyPress event of your control.
Select Case KeyAscii
Case 43 ' Plus key
KeyAscii = 0
Screen.ActiveControl = Screen.ActiveControl + 1
Case 45 ' Minus key
KeyAscii = 0
Screen.ActiveControl = Screen.ActiveControl - 1
End Select
Well anyway, Could someone please tell me the steps from the beginning. The form I want to do this in is "ProblemDOS" , the field that I want to increase or decrease the date by 1 is the "Callbackdate". Please help me figure this out. Thank you.