This is a script to simulate answers from a machine, my problem is that "WaitForStrings" dosent differentiate between "open" and "open1" or "close" and "close1", he always answers to "open" and "close"
firstopen=true
while(true)
strResult = crt.Screen.WaitForStrings("open1","close1","open","close","SCAN")
Select Case strResult
Case 1
crt.Sleep 500
crt.Screen.Send("open1_ok") & chr(13)
Case 2
crt.Sleep 500
crt.Screen.Send("close1_ok") & chr(13)
Case 3
If firstopen=true then
crt.Sleep 500
crt.Screen.Send("open_ok") & chr(13)
firstopen=false
else
crt.Sleep 500
crt.Screen.Send("ok") & chr(13)
firstopen=true
end if
Case 4
crt.Sleep 500
crt.Screen.Send("ready") & chr(13)
Case 5
crt.Sleep 500
crt.Screen.Send("CCD_PASS") & chr(13)
Case Else
crt.Screen.Dialog "We didn't find what we were looking for"
End Select
wend
Might be relevant