Is the source of both sub forms a querry? then you can make a query using vba in the afterupdate event of the row or the lostfocus event.
Then refresh the subforms with a refresh method:
Forms("OrderForm".refresh.
You can change the fields of lets say form2 with code running after update in form1, this is the code for it:
forms("form2".street = me.street
' if you want to see it you should refresh
forms("form2".Refresh
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.