ISProfile.GetDiagnosisDescription

Description

This function returns the diagnosis description by diagnosis ID or code.

Syntax

object.GetDiagnosisDescription(aIDorCode)

Part Attribute Type Description
object Required
The object always implements the ISProfile interface
aIDorCode In, Required
object
ID or the code of the diagnosis

Return Value

string

Returns the diagnosis description by diagnosis ID or code.

Example

Display the description for the diagnosis with the specified code.

Dim aDiagnosisDescription
Dim aCode

aCode = "ASTHMA"
aDiagnosisDescription = Profile.GetDiagnosisDescription(aCode)

Profile.MsgBox ("The description of the diagnosis is " & "'" &_
  aDiagnosisDescription & "'") 
Note:

In Profile Client v8 on User Interface Diagnoses can be found in Clinical > Medical Record > Problems.

Version information

Added in v7.8.0