Save the active record on other form

A

Arni Laugdal

Hi,
I have two forms open and must save the active record on form-A by hitting a
button on form-B.
Do you have some idea how this can be done?
Thank you all.
 
S

Stuart McCall

Arni Laugdal said:
Hi,
I have two forms open and must save the active record on form-A by hitting
a
button on form-B.
Do you have some idea how this can be done?
Thank you all.

In the OnClick event for your button:

Forms!Form-A.Dirty = False
 
Top