WodTelnetDlx Ctrl + C key send using javascript (wodSSH / wodSSH.NET)
Hi,
Im trying to send Ctrl + C combination using telnet.send() method. Its not getting thro.
Even tried VB script but same issue.. Kindly suggest.
[code]
function splcmd()
telnet.SendSpecial 4096
telnet.Send C & chr(13)
end function
[/code]
Re: WodTelnetDlx Ctrl + C key send using javascrip
Hi,
Im trying to send Ctrl + C combination using telnet.send() method. Its not getting thro.Even tried VB script but same issue.. Kindly suggest.
[code]
function splcmd()
telnet.SendSpecial 4096
telnet.Send C & chr(13)
end function[/code]
Failed to mention, im using OCX component. We are having licensed verion.
Re: WodTelnetDlx Ctrl + C key send using javascrip
Hi,
Please try to send something like this is wodTelnetDLX Send Method:
[code]ssh1.Send (Chr$(3)) + vbLf[/code]
I think this should fix your issue.
Let us know how it goes.
Regards,
Drazen
Re: WodTelnetDlx Ctrl + C key send using javascrip
Thanks it worked only point is i removed $ while using in VBscript.