This function creates the encounter present manager.
object.CreateEncountersPresentManager(aMemoControl)
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfile interface |
|
aMemoControl |
In, Required | The richedit control to show the
encounters |
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
.