The date for the next intervention.
object.NextVisitDate
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientRecallVisit interface |
DateTime
Display the date for the next 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 & "The date for the next " &_
"intervention is " & aVisit.NextVisitDate
next
GetVisitCollectionInfo = info
end function
In Profile Client v8 on User Interface Next Intervention Date can be found in
.