This method returns the HLLAPI short name for a specific session.
ret = Item (n)
ret | String, output |
The HLLAPI short name which ranges from uppercase 'A' to 'Z'. | |
n | Ranges in value from 1 to the maximum number of PASSPORT sessions that are connected. |
This is a PASSPORT command.
Example
Sub ZMain()
Dim strText, nRet
Dim strShortName
strShortName = Item(1)
strText = "Session Short Name = " & strShortName
nRet = MsgBox (strText, 0, "Short Name")
End Sub