The manually entered name of the provider that authorised the Rx medication.
object.ProviderStr
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISRxMedication interface |
string
Display some information about the loaded Rx medication, including the manually entered name of the provider that authorised it.
Dim aRxMedication
Dim aRxMedicationInfo
Set aRxMedication = Profile.LoadRxMedication(1751)
if aRxMedication is nothing then
Profile.MsgBox("There is no Rx Medication with the specified ID")
exit sub
end if
aRxMedicationInfo = _
"Rx name: " & aRxMedication.RxName & vbNewLine &_
"Date: " & aRxMedication.Date & vbNewLine &_
"Ordered date: " & aRxMedication.OrderedDate & vbNewLine &_
"Patient: " & Profile.LoadPatient(aRxMedication.PatientId).SurnameFirstName &_
" (ID: " & aRxMedication.PatientId & ")" & vbNewLine &_
"Provider: " & aRxMedication.ProviderStr & vbNewLine
if aRxMedication.Diagnosis.Id > 0 then
aRxMedicationInfo = aRxMedicationInfo & "Diagnosis: " &_
aRxMedication.Diagnosis.Description
end if
Profile.MsgBox(aRxMedicationInfo)
In Profile Client v8 on User Interface Provider's name can be found in
.