You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Show Contents List

Iterating Subfile Rows

To iterate subfile rows you need to know when you have reached the last row in order to stop your logic. To do this use the CHECK_FIELD_EXISTS Function:
for ( Index = 1; CHECK_FIELD_EXISTS("SFL_SEL", Index);  Index++ )
{
SETVALUE("SFL_SEL","X", Index);
}
 
where SFL_SEL is any of the named subfile fields (columns).
 
Show Contents List

  • No labels