This function creates the filter for loading family problems.
object.CreateFamilyProblemFilter()
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfile interface |
Display the number of the family problems loaded on the basis of the selected filter and the Dx description for each of them.
Dim aPatient
Dim aFilter
Dim aFamilyProblem
Dim aFamilyProblems
Dim aMessage
Set aPatient = Profile.SelectPatient
set aFilter = Profile.CreateFamilyProblemFilter
aFilter.PatientID = aPatient.ID
set aFamilyProblems = aFilter.Load ' ISFamilyProblems
aMessage = "Family Problems Count = " & aFamilyProblems.Count
for i = 0 to aFamilyProblems.Count - 1
set aFamilyProblem = aFamilyProblems.Item(i)
aMessage = aMessage & vbNewLine & aFamilyProblem.DxDescription
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Family Problems can be found in
.