I have a Form and a subform that are linked by a field called InvNo.
I want that the subform should display information even when the master form does not have any info. in the InvNo field.
I want to create a unbound control on the master form and enter a number and based on that number display the information the subform is that possible?
I want that the subform should display information even when the master form does not have any info. in the InvNo field.
I want to create a unbound control on the master form and enter a number and based on that number display the information the subform is that possible?
Code:
'instead of writing
Me![InvSubform].LinkChildFields = "InvNo"
Me![InvSubform].LinkMasterFields = "InvNo"
'I will write
Me![InvSubform].LinkChildFields = "InvNo"
Me![InvSubform].LinkMasterFields = Me!NewInvNo