I have just downloaded 3.20 and upgraded, but it seems new version ignores EchoInput setting. I saw the note in release notes, but it didnt help. Below is the code:
sub CheckMUX(thename)
Dim saved_flag
saved_flag = world.echoinput
world.echoinput = vbFalse
world.send "+ss"
world.echoinput = saved_flag
end sub
this is bound to a timer I fire up every 7 secs. Instead of vbFalse, I tried False, false, 0. None had any effect and the +ss is still displayed.
Am I doing something wrong ?
sub CheckMUX(thename)
Dim saved_flag
saved_flag = world.echoinput
world.echoinput = vbFalse
world.send "+ss"
world.echoinput = saved_flag
end sub
this is bound to a timer I fire up every 7 secs. Instead of vbFalse, I tried False, false, 0. None had any effect and the +ss is still displayed.
Am I doing something wrong ?