To work around this issue, choose one of the following methods:
Method 1
Use the Change event.
The On Change event may not appear in the Property Sheet of the ActiveX control. However, you can implement the Change event for the control by editing the VBA code for the control. For example:
1. Open the Visual Basic Editor (Alt+F11)
2. On the Microsoft Access form where the control resides, create a Change event for the control with the following code stub:
Private Sub SpinButton0_Change()
End Sub
3. Copy the existing code from the Updated event to the Change event.
If you prefer, you can rename the Updated event to Change event. In the form's code locate the following line:
Private Sub SpinButton0_Updated(Code as Integer)
Change the line to:
Private Sub SpinButton0_Change()
Method 2
Use a different version of Microsoft Office Access. The problem does not occur in other versions, such as Access 2010 or Access 2003.
Method 3
Use a different control. Not all controls have an On Updated event. There may be another control available that performs a similar function but uses different events, such as the Before Update or After Update events.