This property is True if the exact date when the issue that the patient's procedure is addressing started is unknown.
object.IsIndicationDateApproximate
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientProblem interface |
bool
Display the codes, descriptions, indications for the patient's problems of 'Procedures' type and the exact or approximate dates when the issues that the procedures are addressing started.
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(2) 'Procedures
aMessage = aMessage & vbNewLine &_
"---------" & aCategory.Description & "---------" & vbNewLine & vbNewLine
set aProblems = aCategory.Problems
if aProblems.Count = 0 then
aMessage = aMessage & "No procedures"
else
for each aProblem in aProblems
aMessage = aMessage & " " & "Code: " & aProblem.DxCode &_
"; Description: " & aProblem.DxDescription
if aProblem.IndicationId = 0 then
aMessage = aMessage & "; No Indication " & vbNewLine
else
if aProblem.IsIndicationDateApproximate then
aMessage = aMessage &_
"; Indication: " & aProblem.IndicationDescription &_
" (approximetly from " & aProblem.ApproximateIndicationDateText &_
")" & vbNewLine
else
aMessage = aMessage &_
"; Indication: " & aProblem.IndicationDescription & " (from " &_
aProblem.IndicationDate & ")" & vbNewLine
end if
end if
next
end if
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface the Approx checkbox can be checked in
, in or in .