My record type is like; TData = record age: integer; end; PData = ^TData;
I send data as follows succesfully; Send(Data, SizeOf(TData)); and receive; Receive(Data, SizeOf(TData)); What i want to do is to send a couple of record types (seperately); and distinguish them on the client side. i tried moving data into a PChar variable, ant put some distinguisher in front of data, but this didnt worked out, or i couldnt.. Can someone help me out? Thanks.. -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be
