> I'm planning to upgrade to D2009 for the unicode UI. > However, I want all communications in Ansi. > How can this be done ?
Just as usual. TWSocket.Send will send whatever you use. if you pass the address of an AnsiString, then you'll send ansi. If you pass the address of a UnicodeString you'll send Unicode. You do whatever you like. In D2009 the type "string" is mapped to UnicodeString. If you want ansi string, just use type AnsiString. -- [EMAIL PROTECTED] The author of the freeware multi-tier middleware MidWare The author of the freeware Internet Component Suite (ICS) http://www.overbyte.be -- 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
