Link child fields & Link master fields

A

a

Link child fields

Link master fields



I'm use this code to link master form and sub form

Me.subclient.LinkMasterFields = "Text6"

Me.subclient.LinkChildFields = "text7"

The code work correctly



What I want

I want to remove the link I'm use this code but not work

Me.subclient.LinkMasterFields = ""

Me.subclient.LinkChildFields = ""

What happen

No record will display in the subform client

Is there any way to display all records after remove the link
 
Top