Avatar

Level 10

form1.PageA.Sub_A.Table1.Item.Equipment.access

The above line always refers to the first instance of the Subfiorm.

If you add instances at runtime you need to pass the index to the Subform name so that it refers to the field in the correct instance.

For example:

     Assuming Sub_A is repeating at runtime, then

     form1.PageA.Sub_A[1].Table1.Item.Equipment.access

    

     form1.PageA.Sub_A[2].Table1.Item.Equipment.access

Thanks

Srini