You can use macros to establish connections to IBM hosts.
The following example configures a Telnet connection and then uses the Connect method to open that connection.
Sub MakeMyIBMConnection () With ThisIbmTerminal
If .IsConnected = False Then
.HostAddress = "MyIbmHost"
.Connect
Else
MsgBox ("There is already a connection open.")
End If End WithEnd Sub