Can someone provide some general info or direct me in the right direction to find info about the following:
We are running the following VBA macro running through WRQ
When stepping through the code, I would expect that TEST1 would be displayed on the terminal after the .Transmit "TEST1", ect. However, nothing is displayed on the terminal until after the sub ends. At that time, the terminal displays TEST1TEST2TEST3.
Can anyone tell me why this happens? Thanks.
We are running the following VBA macro running through WRQ
Code:
Sub test()
With Session
.Transmit "TEST1"
.Transmit "TEST2"
.Transmit "TEST3"
End With
end sub
Can anyone tell me why this happens? Thanks.