Re: send (General questions)
Eltaghi,
You can try send CTRL+C on this way:
Ssh1.Send (CHR$(3));
I hope this will work. You need to wait for prompt --More-- and you need to send space bar \n , here is how:
Ssh1.WaitFor( --More-- );
Ssh1.Send( \n );
Drazen