Results 1 to 2 of 2

Thread: Simple TCP communication in Delphi .NET

  1. #1

    Simple TCP communication in Delphi .NET

    I used to use TClientSocket and TWinSocketStream in Delphi 7, now in .NET what should I use? Also I would prefer to stay away from Indy and keep things simple. Thanks in advance!

  2. #2

    Simple TCP communication in Delphi .NET

    Most of the stuff in .NET to do with TCP/IP is in the namespace System.Net, although the useful (Socket) stuff is in System.Net.Sockets

    MSDN has tons of code examples on how to use sockets sychronously or asyncronously using a callback on connects, recieves... increadibly useful stuff...

    check this out...

    http://msdn2.microsoft.com/en-us/lib...ts.socket.aspx

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •