The unique patient's identifier for the additional address.
object.Patient
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISAddresses interface |
int
Display the patient's identifier for the additional address.
Dim aPatient
Dim aAddresses, aAddress
Dim i
Dim aMessage
Dim aAddressCollection
Set aPatient = Profile.SelectPatient
set aAddressCollection = aPatient.LoadAddresses
for i = 0 to aAddressCollection.Count - 1
set aAddress = aAddressCollection.Item(i)
set aAddresses = Profile.LoadAdditionalAddress(aAddress.Id)
aMessage = aMessage & vbNewLine &_
"Patient's ID for the " &_
" additional address " & aAddresses.AsLine &_
" is " & aAddresses.Patient
next
Profile.MsgBox (aMessage)
In Profile Client v8 on User Interface Patient cannot be found.