I am struggling with finding the correct syntax to change recordsource of a subform control ("SubFormCtl")embedded in my main form ("IOSForm"). The source object for "SubFormCtl" is a form named "SubForm". This is what I am using but it doesn't work:
Forms![IOSForm]![SubFormCtl].Form.RecordSource = "InboundGraphTable"
Where "InboundGraphTable" is the name of the table.
Also I have no clue about the syntax for requering my SubForm.
DoCmd.Requery SubFormCtl didn't work.
Thanks in advance for the help
Jay
Forms![IOSForm]![SubFormCtl].Form.RecordSource = "InboundGraphTable"
Where "InboundGraphTable" is the name of the table.
Also I have no clue about the syntax for requering my SubForm.
DoCmd.Requery SubFormCtl didn't work.
Thanks in advance for the help
Jay