Function GetLocation() As String
' # Die aktuelle Arbeisumgebung auslesen...
Dim session As New NotesSession
Dim sValue As String
'
sValue = session.GetEnvironmentString("Location" , True)
sValue = Left(sValue , Instr(sValue , ",")-1)
GetLocation = sValue
End Function