The EntryRoot() property doesn't exist anymore. The entry objects are now exposed through a class called ItemIteratorClass.
v6 was like this:
Code::
forall (EntryClass entry in c.EntryRoot()) {
// do something}
v7 is like this:
Code::
ItemIteratorClass iter(c);
while (EntryClass entry = iter.GetNextEntry()) {
//do something}
Check out the enscript help file in the help menu and you will find ItemIteratorClass in the list on the left. There is more example code all over that help file.
↧