Re: send (General questions)
Dear Drazen,
For CTRL+C:
Ssh1.Send(CHR$(3)); produce err: myhost>HR$(3)
Ssh1.Send( ^ ); is escaping, but disconnected the conn.
Ssh1.Send( \b ); is also escaping, but disconnected the conn.
I think there is a special character for that.
For space bar:
//Ssh1.WaitFor( --More-- ); working when this line is ignored.
Ssh1.Send( \n ); this line working fine to get the next data
Thanks