ISRxMedication.FreqValue

Description

The integer value of the Rx medication dosage frequency (if specified).

Syntax

object.FreqValue

Part Attribute Type Description
object Required
The object always implements the ISRxMedication interface

Return Value

int

Example

Display some information about the loaded Rx medication, including the integer value of its dosage frequency.

Dim aRxMedication
Dim aRxMedicationInfo  
 
Set aRxMedication = Profile.LoadRxMedication(1720)

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 & vbNewLine
  
Profile.MsgBox(aRxMedicationInfo) 
Note: If the dosage frequency value is not set, the property value is null.

In Profile Client v8 on User Interface Frequency Value can be found in Clinical > Medical Record > MedChart > Medication Dose.

Version information

Added in v7.10.90