ISPatientProblemVers.DateTo

Description

The date starting from which the patient no longer has the problem (taken from the selected problem version).

Syntax

object.DateTo

Part Attribute Type Description
object Required
The object always implements the ISPatientProblemVers interface
Restriction: This property is readonly.

Return Value

DateTime

Example

Display the codes, descriptions, statuses of the patient's problems and the dates when these problems ended in each version.

sub main
  Dim aPatient
  Dim aProblemList
  Dim aCategories, aCategory
  Dim aProblems, aProblem
  Dim aFilter
  Dim aProblemVersColl, aVersion
  Dim aMessage
  
  Set aPatient = Profile.SelectPatient

  set aProblemList = aPatient.ProblemList
  set aCategories = aProblemList.Categories

  for each aCategory in aCategories
    aMessage = aMessage & vbNewLine & "---------" & aCategory.Description &_ 
      "---------"  & vbNewLine & vbNewLine 
    set aProblems = aCategory.Problems
    for each aProblem in aProblems 
      aMessage = aMessage & "    " & GetProblemInfo(aProblem) & vbNewLine
      set aFilter = Profile.CreateVersionFilter
      aFilter.FromDate = #01/01/2019#
      aFilter.ToDate = #06/06/2019#
      set aProblemVersColl = aProblem.FindVersions(aFilter)
      for each aVersion in aProblemVersColl
        aMessage = aMessage & "      -" & GetProblemInfo(aVersion) & vbNewLine 
      next ' aVersion                  
    next ' aProblem
  next ' aCategory 

  Profile.MsgBox(aMessage)
end sub

function GetProblemInfo(aProblem)
  Dim aInfo

  aInfo = "Code: " & aProblem.DxCode & "; Description: " & aProblem.DxDescription
  if aProblem.ProblemType <> 6 then  'ptPregnancy
    aInfo = aInfo & " (To: " & aProblem.DateTo & ")"    
  end if
  GetProblemInfo = aInfo
end function  
Note:

In Profile Client v8 on User Interface Date To can be found in Clinical > Medical Record > Problems > Open Problem > History > Date To, in Clinical > Clinical Details > Problems > Open Problem > History > Date To or in Patient > Cases > Clinical > Problems > Open Problem > History > Date To.

Version information

Added in v7.8.0