The last name of the external provider.
object.Lastname
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISExternalProvider interface |
string
Display the external provider's last name.
Dim aExtProvider
Dim aCode
Dim aMessage
aCode = "1"
Set aExtProvider = Profile.LoadExternalProvider(aCode)
if aExtProvider.ID = 0 then
Profile.MsgBox("No external provider with the specified code")
else
aMessage = aMessage & vbNewLine &_
"Full Name:" & vbTab & "Last Name:" & vbNewLine & vbNewLine &_
aExtProvider.FullName & vbTab & aExtProvider.Lastname
end if
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Last Name can be found in
.