This function returns the last value of the HRIs for the selected form by form name and concept codes.
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 |
string
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)