jmstarbuck
Programmer
I have two mainforms that are open at the same time. When
I update the value of a field on Form2, I want to requery a control on Form1 (LBJobs).
I am able to do it in the Form2 Close event but not in the AfterUpdate event of a control on Form2.
This is what I am trying to make work:
It does make the control I'm trying to requery flicker on Form1.
Thoughts?
I update the value of a field on Form2, I want to requery a control on Form1 (LBJobs).
I am able to do it in the Form2 Close event but not in the AfterUpdate event of a control on Form2.
This is what I am trying to make work:
Code:
Forms!Form1!LBjobs.Requery
Thoughts?