This function adds a new problem for the patient.
object.AddProblem(aProblemType)
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatient interface |
|
aProblemType |
In, Required | The type of the problem, that will be
added |
Add a new problem of the selected type for the patient and display its Dx code.
Dim aPatient
Dim aNewProblem
Dim aMessage
Set aPatient = Profile.SelectPatient
Set aNewProblem = aPatient.AddProblem(1) 'ptDiagnosis
aNewProblem.DxCode = "LETH"
aNewProblem.Save
aMessage = "New problem was added successfully " &_
"with Dx Code " & "'" & aNewProblem.DxCode & "'"
Profile.MsgBox (aMessage)
In Profile Client v8 on User Interface Problems can be added and found in
, in or in .