This filter property is used to load the family problems starting from the date when they were last modified.
object.LastModifiedFrom
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISFamilyProblemFilter interface |
DateTime
Display the number of the family problems loaded on the basis of the selected filter and some information about them.
Dim aPatient
Dim aFilter
Dim aFamilyProblems, aFamilyProblem
Dim aMessage
Dim i
Set aPatient = Profile.SelectPatient
set aFilter = Profile.CreateFamilyProblemFilter
aFilter.PatientID = aPatient.ID
aFilter.LastModifiedFrom = #08/01/2019#
set aFamilyProblems = aFilter.Load
aMessage = "Family Problems Count: " & aFamilyProblems.Count & vbNewLine
for i = 0 to aFamilyProblems.Count - 1
set aFamilyProblem = aFamilyProblems.Item(i)
aMessage = aMessage & vbNewLine & (i + 1) & ") " &_
"Dx Description: " & aFamilyProblem.DxDescription & vbNewLine &_
" Patient: " & Profile.LoadPatient(aFamilyProblem.OwnPatient).SurnameFirstName &_
vbNewLine &_
" Date: " & aFamilyProblem.Date & vbNewLine &_
" DT Modified: " & aFamilyProblem.GetDTModified & vbNewLine
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface DT Modified cannot be found, but Family Problems can be found in
.