                   Microline Component Toolkit Key Class


How to use the key class:
-------------------------

There is an enable() method on the Grid and Tree classes which takes a
key class as a parameter.  You can call the enable() method with a key
class to enable specific Grids and Trees to their full functionality.  The key
class also disables the Time Bomb that would disable the software if the key
class is not called.

The Ml31Key.class file contains the key class to enable Grids and
Trees in the Microline Component 3.1.

You may copy the Ml31Key.class file into your development directory
(the directory containing your applet) and add a line of code to enable
a Grid or Tree to it's full functionality as follows:

    MlGrid grid = new MlGrid();
    grid.enable(new Ml31Key());

If you are writing a Java package (if your code has a package statement
in it), you should include

    import Ml31Key;

at the top of your java file and place the key class in your codebase
(root of the applet hierarchy) directory.


Distributing the key class:
---------------------------

When you place your applet on a web site or otherwise distribute your
applet or application, it will need to contain the key class.  Simply
copy it with the other classes in your application.

As per the license agreement, you may not redistribute the key class
except in your (the single developer who bought the license for this
key) applet or applications. Please consult the license agreement for
details.

Note:
-----

If filenames in this distribution were converted to uppercase
when they were copied to your drive, you must change the name of
the Ml31Key.class file from all uppercase to it's correct name
(Ml31Key.class). This would be required if you copied the disk
using a UNIX machine which does not support mixed-case DOS filenames, for
instance.
