Specifications

OLE reference
Gallagher & Robertson Glink: API reference manual 167
The SendKey method
Sends a string to the emulator as if it came from the keyboard
SendKeys ( Keys )
Keys: String Keys to send
Return value: none
The string will also be interpreted if the following ^control-character syntax are
present:
^^ inserts a single ^
^X control character (bottom five bits of the specified character only)
^#ddd decimal specification
^&ooo octal specification
^$hh hexadecimal specification
Using the different possibilities here means that the ASCII CR and ESCAPE
control character may be specified in any of the following ways:
"^M", or "^#013", or "^&015" or "^$0D"
"^[", or "^#027", or "^&033" or "^$1B"
In the same way, the Transmit key can be entered by "^[i", so sending "ABC" +
Tab + "123" + Transmit would use the following Keys string:
VBA Example:
GL.Screen.SendKeys("ABC^i123^[i")
The SetScreenText method
Writes a string to the emulator screen.
SetScreenText ( Col, Row, Text )
Col: Long Start Column position
Row: Long Start Row position
Keys: String Text to write on the screen
Return value: none