Returns the text in the Operator Information Area (OIA)
ret = GetOIA ( )
ret | String, output |
The text returned from the OIA. |
The parentheses after GetOIA are optional.
This is a PASSPORT function.
Example
Sub
ZMain()
Dim strText, nRet
Dim nOIA
nOIA = GetOIA
strText = "Text in OIA = " & nOIA
nRet = MsgBox (strText, 0, "OIA Text")
End Sub