To start TREEBAG without an argument, it should be sufficient to double-click the archive. However, you gain flexibility by executing TREEBAG from the command line. For this, let us assume that you have copied the TREEBAG archive to <my directory>/treebag.jar. Then you can start TREEBAG using the command
java -jar <my directory>/treebag.jar [<worksheet>]
javaw for java in order to suppress the console window which the former opens (and you should probably use Windows' path separator character '\' instead of '/'). Of course, you can also start TREEBAG in this way without copying it to your hard disk. For this, simply refer to the jar-archive on the CD when calling the Java interpreter.
To avoid running out of stack or memory space, it is advisable to start the Java interpreter using the options -Xss and -Xmx, e.g., -Xss8m (8MB stack space) and -Xmx800m (800MB memory limit). This would turn the basic command displayed above into
java -Xss8m -Xmx800m -jar <my directory>/treebag.jar [<worksheet>].
treebag or the like, which takes one optional argument and acts as an abbreviation for java -Xss8m -Xmx800m -jar <my directory>/treebag.jar. The way in which such a command can be defined (e.g., as a shell script under Unix, Linux, or Mac OS X) depends on the operation system used.
examples/worksheets on the CD (where they are organized in a manner similar to the structure used on the web pages). Alternatively, you may unpack this zip-file, which contains an exact copy of the directory examples/worksheets, in whichever place you like.