I want to put one and same function under 2 controls in my subform. The controls are
called quantity and cartons. Is it posible to build a code that recognizes the after update event of the controls quantity and cartons. In other words, my code must
recognize the after update events of the control and the cartons.Something of the following order
If Me![MySubform].[Form].[Quantity].AfterUpdfate = True Then
Do Something
Else If Me![MySubform].[Form].[cartons].AfterUpdate = True Then
Do something
End If