by Happy Lobster (6 Submissions)
Category: Complete Applications
Compatability: Visual Basic 3.0
Difficulty: Advanced
Date Added: Wed 3rd February 2021
Rating:
(103 Votes)
A fully functional Telnet Program designed to give you ease of use and solve your remote access problems.
Assumes
'
'....---' HERE'S WHAT TO DO '----....
'| it may seem long but its worth it |
'|___________________________________|
'
'Making MaceNET for yourself, sorted by ease of use:
'
'1. > Download the VB5 project from:
'
' http:\\www.geocities.com\SiliconValley\Hub\3944'
' It couldn't be simpler than that!
'
'or
'
'2.
'
' > Run NotePad
' > Copy all the source code
' > Paste code into NotePad
' > Save file as Form1.frm
' > Use Visual Basic to view the form
'
' or
'3. > Add the following controls to a Form:
' Combo * 1
' Command Button * 7
' Frame * 1
' Label * 4
' Textbox * 2
' Timer * 1
' VScrollBar * 1
' Winsock * 1
'
'> With the frame, make these objects contained in it:
'
'Label1 - caption "Hostname:"
'Combo1 - stores recent host names
'Command1 - connects to the hostname
'Text2 - multiline set to true, vscrolling enabled - logs events
'Label2 - caption "Port:"
'Text1 - is the port number to connect to
'Command2 - disconnect button
'Label4 - caption "Terminal:"
'Command3 - text colour down
'Command4 - text colour up
'Command5 - background colour down
'Command6 - background colour up
'Command7 - Copy button
'
'> These should be on the form:
'
'Label3 - displays telnet text, set font to FixedSys
'
'Vscoll1 - controls label3 caption
'Winsock1 - does the connecting
'Timer1 - keeps track of resolve time
'
'> Copy the source code except the form's setup bit, and paste it in.
'> Rearrange the objects to how you want them to appear
'> Run
'
'All methods are tried and tested accessing a VAX with OpenVMS on a LAN, if u 'need help [email protected]
Side Effects
1. Tested on accessing a VAX computer running OpenVMS on a LAN
2. Doesn't execute all control sequences
API DeclarationsNone - Winsock takes care of it
Upload