The patient's encounters that are displayed in the rich edit.
object.Encounters
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISEncountersPresentManager interface |
Display the patient's encounters in the rich edit.
sub main
Dim aManager
Dim aFilter
Set aManager = Profile.CreateEncountersPresentManager(Controls_("reClinicalNotes"))
set aFilter = Profile.CreateEncounterFilter
aFilter.EncounterDateFrom = #01/01/2000#
aFilter.EncounterDateTo = Now
aFilter.CumulativeOnly = False
aFilter.LastCount = 0
set aManager.Encounters = Form.Patient.LoadEncounters(aFilter)
aManager.Display
end sub
In Profile Client v8 on User Interface Encounters can be found in
.