> > In D2009 the type "string" is mapped to UnicodeString. If you want ansi > > string, just use type AnsiString.
> yes, but HttpCli.Url is a string, which would be a unicodestring in D2009. This doesn't cause any problem. You can pass an AnsiString where an UnicodeString is requested. The compiler will do the transformation automatically for you. Usually, a program can be recompiled with Delphi 2009 with no change and it works ! Changes are needed if your code assume chars are byte values (sizeof / length) or use strings for something which is not really a string. -- [EMAIL PROTECTED] Author of ICS (Internet Component Suite, freeware) Author of MidWare (Multi-tier framework, freeware) 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
