WriteScreen

Pastes specified text in the host screen.

Parameters
WriteStr
Text to place in host screen.
RowVal
Row position.
ColumnVal
Column position.
Returns
0 for success; or a non-zero error code. Refer to Error codes for a complete listing of error code descriptions.
Remarks
The WriteScreen method can only paste text in unprotected fields in the host screen.

In a BlueZone VT session, the WriteStr parameter is only echoed to the VT client screen. The WriteStr parameter is never sent to the host.

Example
Set bzhao = CreateObject( "BZWhll.WhllObj" )
bzhao.Connect "A"
bzhao.WriteScreen "myuserid", 6, 53
bzhao.WriteScreen "mypassword", 7, 53
bzhao.SendKey "<Enter>"
bzhao.WaitReady 10, -1