The severity of the adverse reaction.
object.Severity
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientProblem interface |
Display the codes, descriptions and the severity of the adverse reaction for the patient's problems of 'Adverse' type.
Dim aPatient
Dim aProblemList
Dim aCategory
Dim aProblems
Dim aProblem
Dim aMessage
Set aPatient = Profile.SelectPatient
set aProblemList = aPatient.ProblemList
set aCategory = aProblemList.Categories.Item(1) 'Adverse
aMessage = aMessage & vbNewLine &_
"---------" & aCategory.Description & "---------" & vbNewLine & vbNewLine
set aProblems = aCategory.Problems
if aProblems.Count = 0 then
aMessage = "No adverse reactions"
else
for each aProblem in aProblems
aMessage = aMessage & " " & "Code: " & aProblem.DxCode &_
"; Description: " & aProblem.DxDescription & "; Severity = " &_
aProblem.Severity & vbNewLine
next
end if
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Severity can be found in
, in or in .