This function returns the problems of the patient's family members.
object.LoadFamilyProblems()
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatient interface |
Display the number and diagnosis description of the patient's family problems.
Dim aPatient
Dim aFamilyProblems
Dim aFamilyProblem
Dim aMessage
Set aPatient = Profile.SelectPatient
set aFamilyProblems = aPatient.LoadFamilyProblems
aMessage = "Family Problems Count = " & aFamilyProblems.Count
for i = 0 to aFamilyProblems.Count - 1
set aFamilyProblem = aFamilyProblems.Item(i)
aMessage = aMessage & vbNewLine
aMessage = aMessage & aFamilyProblem.DxDescription
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Family Problems can be found in
.