cancel
Showing results for 
Search instead for 
Did you mean: 

How to loop and read each item in subform ?

Former Member
0 Kudos

Hi,

I was created a table to content multiple record in interactive form via using subform.

How to loop and read each item in subform ?

Thank you.

Regards,

Eric

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Thank you

0 Kudos

Hi,

You can try somthing like that:


for (n = 0; n < subform.nodes.length; n++)
{
subform.nodes.item(n)...
}

Best regards,

Arik.