| All wodCrypt (12) wodSSH (10) wodSFTP (23) wodSSHServer (1) wodSSHTunnel (11) wodSSHpackage wodSFTPdll wodSSH.NET (10) wodSFTP.NET (24) wodFtpDLX.NET (22) wodWebServer.NET (10) wodAppUpdate (13) wodHttpDLX (8) wodFtpDLX (22) wodTelnetDLX wodFTPServer (3) wodWebServer (10) wodVPN wodXMPP (13) | All ** [Visual Basic] ** [C#] ** [VB.NET] ** Adjust SSH server display area using columns and rows VB code
 Dim wodSSH1 As wodSSHCom Set wodSSH1 = New wodSSHCom 'Inside Columns Property you can specify number of columns reported to the server. wodSSH1.Columns = 100 'Using Rows Property you can specify number of rows reported to the server. wodSSH1.Rows = 30 'Set server login, password and hostname. wodSSH1.HostName = "your_hostname" wodSSH1.Login = "your_login" wodSSH1.Password = "your_password" 'Connect to server. wodSSH1.Connect VB.NET code
 Uses wodSSH.NET component    Dim wodSSH1 As WeOnlyDo.Client.SSH wodSSH1 = New WeOnlyDo.Client.SSH 'Inside Columns Property you can specify number of columns reported to the server. wodSSH1.Columns = 100 'Using Rows Property you can specify number of rows reported to the server. wodSSH1.Rows = 30 'Set server login, password and hostname. wodSSH1.Hostname = "your_hostname" wodSSH1.Login = "your_login" wodSSH1.Password = "your_password" 'Connect to server. wodSSH1.Connect() C# code
 Uses wodSSH.NET component    WeOnlyDo.Client.SSH wodSSH1; wodSSH1 = new WeOnlyDo.Client.SSH(); //Inside Columns Property you can specify number of columns reported to the server. wodSSH1.Columns = 100; //Using Rows Property you can specify number of rows reported to the server. wodSSH1.Rows = 30; //Set server login, password and hostname. wodSSH1.Hostname = "your_hostname"; wodSSH1.Login = "your_login"; wodSSH1.Password = "your_password"; //Connect to server. wodSSH1.Connect(); |