Results 1 to 2 of 2

Thread: delphi2009

  1. #1

    delphi2009

    Who knows an easy way to 'fix' strings with delphi2009 (win32)? Is there an code converter?
    http://3das.noeska.com - create adventure games without programming

  2. #2

    Re: delphi2009

    The short answer: use ansiString instead of string.

    The new string type is unicode based, which does not always work well with older code.
    You can solve that most of the time by defining your strings as AnsiString.

    [pascal]
    var myOldString : ansiString;
    myNewString : string;
    [/pascal]


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
  •