Sorry for the late response. I swear I replied to this yesterday

. Anyway, follow the instructions below to add the winsock active X control as a component in the delphi IDE:
- Start a new project and goto the component menu. Click on Import Active X Control
- From the list select Microsoft Winsock Control
- Click install.
- The winsock control should now show up in the component pallet in the ActiveX Controls pages. To use it, add it to the form like you would any other control. All the properties and methods are identicle to what they would eb in VB.
As Delphi has direct access to the windows API, you don't actually need to import the winsock Active X control. You can use the Winsock API simply by including:
uses Winsock at the top of your unit name. Although using the WinsockAPI is a little more complex than the Active X control, it has the benifits of being alot more powerful and flexible.