Linking two same fields in Access

G

Guest

I want to link two Yes/No check boxes from two different subforms, eg if I
select Checkbox in one subform and take tick out, it will automatically
remove tick from other checkbox which is in a different subform. The fields
for the checkbox are in different tables
 
G

Geof Wyght

RAV,

Try:
Forms("ParentForm2").SubForm2.Form.Controls
("chkBox2").Value=Me.SubForm1.Form.Controls(chkBox1").Value
Good luck.
Geof Wyght
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top