The Rx medication dosage frequency that is returned as string.
object.FreqStr
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISRxMedication interface |
string
Display the short information about the loaded Rx medication, including its dosage frequency that is returned as string.
Dim aRxMedication
Dim aRxMedicationInfo
Set aRxMedication = Profile.LoadRxMedication(1507)
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 &_
"Ordered date: " & aRxMedication.OrderedDate & vbNewLine &_
"Dosage: " & aRxMedication.Dosage & vbNewLine &_
"Dosage Line: " & aRxMedication.DosageLine & vbNewLine &_
"Frequency as String: " & aRxMedication.FreqStr & vbNewLine &_
"Frequency Value: " & aRxMedication.FreqValue
Profile.MsgBox(aRxMedicationInfo)
In Profile Client v8 on User Interface Dosage frequency can be found in
.