"BDS2006 / Delphi2007 / C++Builder 2006 / C++Builder 2007" 제품군에는 TClientSocket과 TServerSocket 컴퍼넌트가 기본적으로 Install 되어 있지 않기 때문에, 해당 컴퍼넌트를 사용하기 위해서는 따로이 Install 작업을 거쳐줘야 한다.
출처 : http://support.codegear.com/kr/article/36470
The TClientSocket and TServerSocket components are available in BDS 2006 and Delphi 2007, however, they are by default, not installed.
- In order to install, from the menu, select Component, Install Packages.
- In the Install Packages dialog, click on Add.
- In the Add Design Package dialog, browse to your BDS\4.0\bin or RAD Studio\5.0\bin folder, typically at Program Files\Borland\BDS\4.0\bin or Program Files\CodeGear\RAD Studio\5.0\bin, and select dclsockets100.bpl, and click Open.
- Optionally - If you now click on the Components button, you'll see that a Components dialog that comes up, showing both TClientSocket and TServerSocket. Click on OK to dismiss the Components dialog.
- Click OK to dismiss the Install Packages dialog.
Note that the above are one-time installation instructions. You do not need to do this every time.
Now, to use the component, start a new VCL project, and you'll find TClientSocket and TServerSocket listed in the Internet category of the Tool Palette. Alternatively, click on the Tool Palette and start typing Socket slowly. Components containing the word Socket will be listed and the TClientSocket and TServerSocket components will appear. Drag and drop the component onto your form.