how to read and use .StatusBar = ,WaitForString ")"...?
how to read and use .StatusBar = ,WaitForString ")"...?
(OP)
.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.
.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.
RE: how to read and use .StatusBar = ,WaitForString ")"...?
Hi,
One if the issues with an emulator is waiting for a response from the host. I often use something like...
CODE
DoEvents
Loop
I never use the statusbar, so I cannot comment directly on your question.
Skip,
Just traded in my old subtlety...
for a NUANCE!
RE: how to read and use .StatusBar = ,WaitForString ")"...?