LOTUSSCRIPT /COM/OLE のクラス


例:Server プロパティ
次のスクリプトは現在のデータベースについてメッセージを表示します。

Dim session As New NotesSession
Dim db As NotesDatabase
Set db = session.CurrentDatabase
If ( db.Server = "" ) Then
 Messagebox( "This database is local.")
Else
 Messagebox( "This database is on a server.")
End If

関連項目