Ok I'm new to WinSock (I haven't programmed in VB in a while). I'm following this tutorial at: HERE

On the last page of it, it has all the code from in the tut:
' in your first program, we need to listen for a
' connection. Add the winsock control to your project by clicking on
' "Project"-->"Components". Scroll down to find the "Microsoft Winsock
' Control 6". Check the box, then click OK. Draw an control onto the form,
' call it "Winsock", and then paste this code into the form.

Private Sub Form_Load()
Winsock.LocalPort = 10101
Winsock.Listen
End Sub

Private Sub Winsock_ConnectionRequest(ByVal RequestID As Long)
Winsock.Close
Winsock.Accept RequestID
End Sub

' in your Second program, we need to make an outgoing
' connection. So, follow the same procedure as above, and
' draw a Winsock onto the form, calling it "Winsock"
' Also, draw a command button on, and call it "cmdConnect"

Private Sub cmdConnect_Click()
Winsock.RemoteHost = "127.0.0.1"
Winsock.RemotePort = 10101
Winsock.Connect
End Sub

Private Sub Winsock_Connect()
MsgBox "Connected"
End Sub

Private Sub Winsock_Error(ByVal Number As Integer, Description As String, _
ByVal Scode As Long, ByVal Source As String, ByVal HelpFile As String, _
ByVal HelpContext As Long, CancelDisplay As Boolean)
MsgBox "Error: " & Description
End Sub

' now run both programs within VB and press the command button.
' If all has gone to plan, you should get a msgbox saying "Connected"...


In the comments at the Top it says to go to Projects->Components and then scroll down to find Microsoft Winsock Contrl 6. But I can't find that. This is what I have:
Windows Form
Class
Module
Component Class
User Control
Data Form Wizard
DataSet
XML File
XML Schema
Code File
Custom Control
HTML Page
Inherited Form
Web Custom Control
inherited User Control
Windows Service
COM Class
Transactional Component
Test File
Frameset
XSLT File
Style Sheet
Installer Class
Bitmap File
Cursor File
Icon File
Assembly Resource File
Assembly Information File
Application Configuration File
JScript File
VBScript File
Windows Script Host

Do I have the Winsock Component and it's just a different name? Or is there a site I can Download it from?
Please Hurry with your replies!

Thanks