UserList

This function will return the device number, user and application currently in use. The purpose of this command is to log or locate a user doing a transaction, possibly for sending just the one device a message over the network. (See SYS.SendMessage)

Group:  System

Syntax:  sUserList = SYS.UserList([bOnlyLoggedIn])

sUserList            (String) contains the device number, logged in user and application of all devices in use at the time the command was issued.

bOnlyLoggedIn   (Boolean) Optional – when set to True only returns entries for devices that have a logged in user. The default is False and this returns all connected devices to the server regardless of a user logged in. This could be used to generate a list of all connected devices so that they may all receive a message on the screen. The default is False.

Example:

Dim sUserList As String

sUserList = SYS.UserList

sUserList = App.ShowList(SYS.UserList(True),True)

Supported Versions:   RFgen 4.0 and higher.