This function returns information about the patient's intervention in a format that is useful to (and understandable by) the patient.
object.GetHelpInfo()
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientRecallVisit interface |
Display the information about the patient's intervention.
sub main()
Dim aPatient, aRecallVisits, 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 & aVisit.Description
set aHI = aVisit.GetHelpInfo
if aHI is nothing then
info = info & vbNewLine & "No patient info"
else
info = info & vbNewLine & Profile.Rtf2Plain(aHI.GetBody)
end if
next
GetVisitCollectionInfo = info
end function
In Profile Client v8 on User Interface Help Info can be found in
.