DataSelection.Next
Syntax:
Returned value:
True - the next data element is selected; False - the end of the selection is reached.
Description:
Availability:
Example:
Sel = ExchangePlans.SelectChanges(Recipient, MessageNo); While Sel.Next() Do Object = Sel.Get(); WriteXML(Record, Object); EndDo; |