
Examples
cursor:Entry() returns the next entry.
soup := GetUnionSoup("Names");
curs := soup:Query({indexPath: 'sortOn});
e := curs:Entry();
internalStore := GetStores()[0];
while e and EntryStore(e) = internalStore do begin
e := curs:Next();
end;
Print(e);
{
sortOn: "a",
...
}
Now, pull the card from the Newton and execute the Print statement again:
Print(curs:Entry());
{
sortOn: "b",
...
}
An online version of Programming for the Newton using Macintosh, 2nd ed. ©1996, 1994, Julie McKeehan and Neil Rhodes.
Last modified: 1 DEC 1996