| License | API | Home | Member Services |
I want to build an Applet.
I want to build an Application.
I want a copy of the documentation.
2. Add "ARCHIVE="or???.jar" to the applet tag in your HTML document.
EG: ?APPLET ARCHIVE="or???.jar" CODE="MyApplet.class" WIDTH=200 HEIGHT=100>
3. Some browsers ignore the ARCHIVE parameter. To accommodate these browsers, extract the OR-Objects class directory structure into the same directory as the applet.
2. Modify your CLASSPATH to include the FULL PATH to the 'jar' file including the NAME.
EG: "SET CLASSPATH = %CLASSPATH%;C:\your_path\or???.jar"
If your compiler has trouble finding OR-Objects after steps one and two read this note.
2. Use an HTML browser to browse the file "index.html".
1. Some compilers and virtual machines have trouble reading classes from .jar files. This can be fixed by extracting the OR-Objects classes into an appropriate directory and setting the CLASSPATH to that directory;
E.G. "SET CLASSPATH=%CLASSPATH%;C:\your_extract_dir"
2. Some compilers, especially integrated development environments, do not use the CLASSPATH environment variable. For these you will need to check the documentation provided by the manufacturer.
3. Make sure your import statement uses the full name of a package.
E.G. "import drasys.or.graph.*;"