ISPatientProblemLoadParams.DiseaseConceptCodeLoadKind

Description

This parameter property is used to determine search mode for loading patient problems by disease concept code.

Syntax

object.DiseaseConceptCodeLoadKind

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

Return Value

TSStringFieldLoadKind

Example

Display the number of the patient problems loaded on the basis of the selected parameter, their codes and descriptions.

Dim aParams
Dim aProblems, aProblem
Dim aMessage

Set aParams = Profile.MakePatientProblemLoadParams
aParams.DiseaseConceptCode = "z..2d"
aParams.DiseaseConceptCodeLoadKind = 4 'sflkContains
set aProblems = Profile.LoadPatientProblems(aParams)

aMessage = "Problems Count = " & aProblems.Count
for i = 0 to aProblems.Count - 1
  set aProblem = aProblems.Item(i)
  aMessage = aMessage & vbNewLine & (i + 1) & ") " & "Code: " & aProblem.DxCode &_
    " (Description: " & aProblem.DxDescription & ")" 
next      

Profile.MsgBox(aMessage)  
Note:

In Profile Client v8 on User Interface Disease Concept Code can be found in Maintain > Disease Codes > Edit > Concept.

Version information

Added in v8.2.0