How to refer to a control on a subform:
Forms![frmRequestMain]![Child0].Form![Total Hours Expended]
Refer to a property of the subform:
Forms![frmRequestMain]![Child0].Visible = False
In both cases, Child0 is the name of the subform control, not the form that goes into it.