J
Jack Sheet
What is the syntax, please, to insert into the
Private Sub Form_Current()
event of a parent form
in order to refresh a subform contained within that parent form?
I have a subform called "F_TJA_Tasks_Sub" and I have tried the following
combinations:
F_TJA_Tasks_Sub.Form.Refresh (does not compile - variable not defined)
Forms("F_TJA_Tasks_Sub").Refresh - run time error 2450 form not found
Forms("F_TJA_Tasks_Sub").Form.Refresh - run time error as above
Forms![F_TJA_Tasks_Sub].Refresh - run time error as above.
Private Sub Form_Current()
event of a parent form
in order to refresh a subform contained within that parent form?
I have a subform called "F_TJA_Tasks_Sub" and I have tried the following
combinations:
F_TJA_Tasks_Sub.Form.Refresh (does not compile - variable not defined)
Forms("F_TJA_Tasks_Sub").Refresh - run time error 2450 form not found
Forms("F_TJA_Tasks_Sub").Form.Refresh - run time error as above
Forms![F_TJA_Tasks_Sub].Refresh - run time error as above.