Examples: Parent property (NotesInternational - LotusScript®)

This Visual Basic code displays the parent user name of a NotesInternational object.

Private Sub IntlParent_Click()
Dim s As New NotesSession
s.Initialize
Dim intl As NotesInternational
Set intl = s.International
MsgBox intl.Parent.UserName, , "Parent user name"
End Sub