expression.GetVBAReferences() As String()
where expression is a variable that represents a IbmTerminal Object
Return Value
A string array that contains the referenced session file names.
expression.GetVBAReferences() As String()
Sub GetListOfVBAReferences() Dim listOfSessionFiles() As String listOfSessionFiles = ThisIbmTerminal.GetVBAReferences() For Each Item In listOfSessionFiles Debug.Print Item Next End Sub