Quantcast
Channel: Forensic Focus Forums - Recent Topics
Viewing all articles
Browse latest Browse all 20102

Forensic Software: Enscript v6 to v7 errors

$
0
0
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.

Viewing all articles
Browse latest Browse all 20102

Trending Articles