Lotus Software logo
IBM Lotus Domino Designer 8.5
  Versions 8.5 and 8.5.1






Examples: NotesVersion property

This application displays the release number of Domino installed in the local program and data directories.

import lotus.domino.*;

class version extends NotesThread
{
public static void main(String argv[])
{
version t = new version();
t.start();
}
public void runNotes()
{
try
{
Session s = NotesFactory.createSession();
String v = s.getNotesVersion();
System.out.println("Domino version = " + v);
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
Related topics
NotesVersion property




Library | Support | Terms of use |

Last updated: Monday, October 5, 2009