ZSocket FAQ
  Q. I don't get any data when I use str = ZSocket1->Text.

A. Since Text is a zero terminated AnsiString is will not allow you to receive binary data that contains zero byte values. Use the method ZReceive instead. ZReceive allows you to receive data into a unsigned char *buffer.

Q. Can you modify the ZSocket component to do ?.

A. Yes, we will be happy to add features as needed. Please Email us with your needs.

Q. How do I lookup a hosts IP address without blocking.

A. Use the method GetRemoteName and then call ZConnect.

Q. Can you supply samples for ZSocket?

A. The samples are now included with the download, the sample shows how to handle multiple incoming clients on the server side and shows you how to connect from the client side also..