Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to read and use .StatusBar = ,WaitForString ")"...?

Status
Not open for further replies.

whb0922

Technical User
Jan 18, 2011
3
US
.StatusBar = "Waiting for Prompt: Entry Date:"
.WaitForString "B" & ESC & "[4;13f", NEVER_TIME_OUT, rcAllowKeystrokes
.StatusBar = ""

.StatusBar = "Waiting for Prompt: A/C:070011000012 A/C Type: A/C Code:"
.WaitForString "B" & ESC & "[6;59f", NEVER_TIME_OUT, rcAllowKeystrokes
.StatusBar = ""

can you help me with ""B" & ESC & "[4;13f", ",and"B" & ESC & "[6;59f", " how to read and use them?
sometimes i used it for automation but stop at this.
 



Hi,

One if the issues with an emulator is waiting for a response from the host. I often use something like...
Code:
   Do Until (oScreen.WaitForCursor(3, 17))
      DoEvents
   Loop
where row 3, column 17 is the cursor rest position for the oScreen object. I make sure that the cursor is MOVED from that position before issuing the oScreen.SendKeys command.

I never use the statusbar, so I cannot comment directly on your question.

Skip,
[sub]
[glasses]Just traded in my old subtlety...
for a NUANCE![tongue][/sub]
 
[6;59f", "[4;13f", anyone know its meaning?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top