Question

  Asked: Apr 25 2008   5:53 PM GMT
  Asked by: Domino Ask The Experts


What is the best way to retrieve the creation date of a Lotus Notes database?


Lotus Web development, Lotus Notes database

What is the best way to retrieve the creation date of a Lotus Notes database? I would want to view it in a page or a form on the Web. Thanks in advance for your advice.

Subscribe to Alerts! Get questions and answers delivered to your Inbox.


E-mail me updates on this question



   SUBSCRIBE

hidden modal window

Answer Wiki (Improve, edit or add to this answer)


 RATE THIS ANSWER
-1
Click to Vote:
  •   0
  •  -1





Dim session As New NotesSession
Dim db As NotesDatabase
Dim createDate As Variant
Set db = session.CurrentDatabase
createDate = db.Created

Dim workspace As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Set uidoc = workspace.CurrentDocument

%Rem
DatabaseCreatedDate is a text field on your form or page
%End REM

Set uidoc.fieldsettext(DatabaseCreatedDate;cstr(createddate))
Call uidoc.refresh
  • AddThis Social Bookmark Button

Browse more Questions and Answers on Lotus Domino.

Looking for relevant Lotus Domino Whitepapers? Visit the SearchDomino.com Research Library.


Discuss This Answer


You must be logged-in to discuss a question. Log-in/Register