Hello,
Thanks for all your help thus far.
I'm trying to access a subForm from another subForm.
SubForm1 (currently in this subform)
SubForm2 (need to requery)
MainForm
Apparently my syntax is not correct. Here's what I have on my ONCLICK event in SubForm1:
Is this correct?
Thanks for all your help thus far.
I'm trying to access a subForm from another subForm.
SubForm1 (currently in this subform)
SubForm2 (need to requery)
MainForm
Apparently my syntax is not correct. Here's what I have on my ONCLICK event in SubForm1:
Code:
Me!SubForm1.MainForm!SubForm2.MainForm.RecordSource = "SELECT Courses.Course_Name FROM Courses WHERE Courses.Course_Name= VALUE"
Me!SubForm1.MainForm!SubForm2.MainForm.Requery
Is this correct?