Delphi Seattle problems with Sockets

0

[Delphi Seattle] I have a unit that has uses in Sockets (from a source that was in Delphi XE2), uses does not recognize ... does anyone know how to proceed? Note: Ai without this uses I have more problems because it does not recognize the TCustomIpClient ..

    
asked by anonymous 26.10.2018 / 15:08

2 answers

1

The library is not installed by default, but is available from Delphi sources. To do this, just install bpl equivalent to the version you are using, usually in the bin folder.

In the Tokyo version bpl is the dclsockets250.bpl understand that this 250 is the version.

Source: Embarcadero .

    
27.10.2018 / 18:51
0

I do not know if it's all but in Tokyo the only unit I have with this class is the Web.Win.Sockets

It's not in the default project (I may not have installed something with the IDE) but it's in the samples that come with the IDE, something like

C:\Users\Public\Documents\Embarcadero\Studio.0\Samples\Object Pascal\VCL\InetWinSockets\Web.Win.Sockets.pas

Hope it helps

    
26.10.2018 / 17:24