GetOIA

Description

Returns the text in the Operator Information Area (OIA)

Syntax

ret = GetOIA ( )

Parameters
ret String, output
  The text returned from the OIA.

 

Remarks

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