I have a form (form 1) that calls another form (form2).
Users can change and save info on form2. When they save the form2 record, I check off a check box on form 1.
Forms!frmAccount!(Me.txtCheckType.Value) = 0
However, when control passes back to form1, the user might cancel the form, or close the form, in that case, I lose the value from the above statement.
How can I get that value to "stick" from form2.
Users can change and save info on form2. When they save the form2 record, I check off a check box on form 1.
Forms!frmAccount!(Me.txtCheckType.Value) = 0
However, when control passes back to form1, the user might cancel the form, or close the form, in that case, I lose the value from the above statement.
How can I get that value to "stick" from form2.