ISFamilyProblem.DXId

Description

This property contains the DX Id of the patient's family problem.

Syntax

object.DXId

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

Return Value

int

Example

Display some information about the family problems loaded on the basis of the selected filter including the DX Id of the family problems.

Dim aPatient
Dim aFilter
Dim aFamilyProblems
Dim aFamilyProblem
Dim aMessage


Set aPatient = Profile.SelectPatient
set aFilter = Profile.CreateFamilyProblemFilter
aFilter.PatientID = aPatient.ID
set aFamilyProblems = aFilter.Load

aMessage = "Family Problems Count: " & aFamilyProblems.Count

for i = 0 to aFamilyProblems.Count - 1 
  set aFamilyProblem = aFamilyProblems.Items(i)
  aMessage = aMessage & vbNewLine &_
    "DxDescription: " & vbTab & "DXId: " & vbNewLine &_
    aFamilyProblem.DxDescription & vbTab & vbTab & aFamilyProblem.DXId 
  
next 

Profile.MsgBox(aMessage)   
Note:

In Profile Client v8 on User Interface DX Id cannot be found.

Version information

Added in v7.8.0