How do I get the server name with LotusScript. LotusScript get server name.
How do I get the server name with LotusScript. LotusScript get server name.
| Answer | The ServerName property is avaialable from a NotesSession object.
Dim session As New NotesSession
Dim sServerName as String
sServerName = session.ServerName
If the server name is hierarchical, this property returns the fully distinguished name.
This property is null if the session is not running on a server.
|
| Attachments | -none- |
| Applies to versions | 5.x; 6.x; 7.x |
| FAQ Provided By | Steve Charles Robinson |
| Credit | |
 |  |
|
|