How can i recognize an AfterUpdate event?
I have a command button called CmdExit
where i want to put the folloiwng event:
If customerid is chosen Then
' perform the function
CancelOrderOnExit
Else
DoCmd.Close acForm, Me.Name
CustomerId is a combo box from where i choose the customer.I want the function
CancelOrderOnExit to be triggered
only after i have chosen a customer.
But i do not want to place it in the after udpate event of the customerid.
I have a command button called CmdExit
where i want to put the folloiwng event:
If customerid is chosen Then
' perform the function
CancelOrderOnExit
Else
DoCmd.Close acForm, Me.Name
CustomerId is a combo box from where i choose the customer.I want the function
CancelOrderOnExit to be triggered
only after i have chosen a customer.
But i do not want to place it in the after udpate event of the customerid.