I have a form with an option box "Frm_PayMethod" that has two option buttons. The option box has an 'OnClick' event.
The event has the following code :-
When I click on either of the options it changes the status on the screen but has not commited the status to the table.
How can I force the table to commit the 'Status' Field immediatley when the options change?
Thanks
The event has the following code :-
Code:
If PayMethod = 1 Then me!Status = "Pay In Full"
If PayMethod = 2 Then me!Status = "Pay SSP Only"
Me!Frm_PayMethod.SetFocus
How can I force the table to commit the 'Status' Field immediatley when the options change?
Thanks