The patient's mobile phone number for the additional address.
object.CellPhone
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISAddresses interface |
string
Display the patient's mobile phone number for the additional address.
Dim aPatient
Dim aAddresses, aAddress
Dim i
Dim aAddressCollection
Dim aMessage
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 &_
"The mobile phone for the patient's" &_
" additional address " & aAddresses.AsLine &_
" is " & aAddresses.CellPhone
next
Profile.MsgBox (aMessage)
In Profile Client v8 on User Interface Cell Phone can be found in
.