I have 2 forms open on screen. FormA and FormC.
FormA has a subfrom named SubFormB.
FromC has no subform.
When I click a button in FormC, I need to read a date from SubFormB.
How can I achieve this.
I tried:
But I received Application-defined or object-oriented error.
Any kind of help is appreciated.
FormA has a subfrom named SubFormB.
FromC has no subform.
When I click a button in FormC, I need to read a date from SubFormB.
How can I achieve this.
I tried:
Code:
Dim Dt As Date
Dt=Forms("FormA").Form.SubFormB.DeliveryDate
Any kind of help is appreciated.