This is a reference to the patient's intervention.
object.URL
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientRecallVisit interface |
string
Display a reference to the patient's intervention.
sub main()
Dim aPatient, aRecallPlans, aMessage
set aPatient = Profile.SelectPatient
set aRecallPlans = aPatient.RecallPlans
for each aPlan in aRecallPlans
aMessage = aMessage & GetVisitCollectionInfo(aPlan.Visits)
next
Profile.MsgBox(aMessage)
end sub
function GetVisitCollectionInfo(aVisits)
for each aVisit in aVisits
info = info & vbNewLine & "The reference to the patient's intervention '" &_
aVisit.Description & "' is " & aVisit.URL
next
GetVisitCollectionInfo = info & vbNewLine
end function
In Profile Client v8 on User Interface URL cannot be found.