WaitForCursorColumn
WaitForCursorColumn
Wait for the cursor to appear at the specified column
Syntax
FlexScreen.WaitForCursorColumn(Column, [WaitMSec])
Parameters
Column |
Integer, input |
|
Integer value of the column. |
||
[WaitMSec] |
Integer, input, optional |
|
Number of milliseconds before the wait method will timeout. |
Remarks
If the optional WaitMSec parameter is specified, it will be used as the maximum wait time before a timeout error occurs. If unspecified, FlexScreen.WaitTimeoutMSec will be used instead.
When a timeout occurs, a run time error will be generated and the macro will stop unless On Error Resume Next is in effect, in which case, WaitForCursor will return a false value.
Example
Sub Main()
Ok = FlexScreen.WaitForCursorColumn(16)
Ok = FlexScreen.SendKeys("MyUserID")
Ok = FlexScreen.SendKeys(FlexKey.VT_RETURN)
End Sub