ISPatient.LoadLastFormFields

Description

This function returns the last value of the HRIs for the selected form by form name and concept codes.

Syntax

object.LoadLastFormFields(aName, aList)

Part Attribute Type Description
object Required
The object always implements the ISPatient interface
aName In, Required
string
The name of the form
aList In, Required
string
The list of concept codes

Return Value

string

Returns the value of the last HRIs for the selected form by form name and concept codes.

Example

Display the value of the last HRIs for the selected form by form name and concept codes.

Dim aPatient 
Dim aName
Dim aList 
Dim aLastFormFields  

Set aPatient = Profile.SelectPatient
aName = "RNZN Regrade"
aList = "_ZAPA0,_ZAPA1"  
aLastFormFields = aPatient.LoadLastFormFields(aName, aList)
Profile.MsgBox(aLastFormFields)   
Note:

Version information

Added in v7.8.0