ISRecallVisitFilter.SearchStillDue

Description

This filter property is used to load the interventions filtered by the status 'Still Due'.

Syntax

object.SearchStillDue

Part Attribute Type Description
object Required
The object always implements the ISRecallVisitFilter interface

Return Value

bool

Example

Display the number of the interventions filtered by the status 'Still Due'.

sub main   
  Dim aFilter
  Dim aVisits
  Dim aMessage
    
  Set aFilter = Profile.CreateRecallVisitFilter
  
  aFilter.SearchStillDue = true
   
  set aVisits = Profile.LoadRecallVisits(aFilter)  
   
  aMessage = aMessage & vbNewLine & "The number of the interventions " &_
    "filtered by the status 'Still Due' (" & aFilter.SearchStillDue &_
    ") is " & aVisits.Count
    
  Profile.MsgBox(aMessage)  
end sub       
Note:

In Profile Client v8 on User Interface Search Still Due cannot be found. Intervention Status can be found in Clinical > Care Plans > Open active intervention > Intervention Outcome > Status field.

Version information

Added in v7.8.0