This is more a Java question than anything.
I have a progress bar class I am using in my lotusscripts. This class is stored in the script library.
To import and use this in lotusscript I just put “Use ‘ProgressBar Class’”.
How would I do it in Java?
This is more a Java question than anything.
I have a progress bar class I am using in my lotusscripts. This class is stored in the script library.
To import and use this in lotusscript I just put “Use ‘ProgressBar Class’”.
How would I do it in Java?
Subject: Lotusscript Class in Java
Subject: RE: Lotusscript Class in Java
You can’t use a “script library” outside of the Designer, but if it helps, you can:
export the source,
compile it,
create a jar file from it, and
include the jar file in the classpath of the Java program.
dgg