Tagged Questions

7
votes
4answers
693 views

Transition to Unicode for an application that handles text files

My Win32 Delphi app analyzes text files produced by other applications that do not support Unicode. Thus, my apps needs to read and write ansi strings, but I would like to provide a better-localized ...
5
votes
2answers
505 views

Delphi XE2 AnsiFormat() and ANSI String constants

Is there a handy Format() function that works only on Ansi strings? Because everytime I use an AnsiString with Format() I get a warning. And no, I don't want Delphi to convert my AnsiStrings back and ...
4
votes
5answers
1k views

AnsiString return values from a Delphi 2007 DLL in a Delphi 2009 application

I have a DLL compiled with D2007 that has functions that return AnsiStrings. My application is compiled in D2009. When it calls the AnsiString functions, it gets back garbage. I created a little ...
2
votes
1answer
398 views

Delphi: Unicode->AnsiString, language for non-unicode programs

I have Delphi 2010. XXX-component uses File_Path:AnsiString. A path can be written in XXX-language. If I set to use XXX-language for non-unicode programs in Windows settings then XXX-component ...
2
votes
3answers
331 views

Dll built in Delphi 2010/2009 not compatible to Delphi 7 when an Exception is raised

I've built a dll in Delphi 2010 and it's consumed in my delphi 7 application. I'm aware of the unicode AnsiString / string matter and according to my tests everything works fine up to the moment ...
2
votes
2answers
2k views

Converting Integer value into AnsiString in Delphi 2009

IntToStr() function returns string which is Unicode now. I want converting to AnsiString. Can I use AnsiString(IntToStr(I)) safely?
1
vote
2answers
168 views

Delphi: How to encode TIdBytes to Base64 string?

How to encode TIdBytes to Base64 string (not AnsiString) ? ASocket.IOHandler.CheckForDataOnSource(5); if not ASocket.Socket.InputBufferIsEmpty then begin ...
1
vote
2answers
2k views

Converting UnicodeString to PAnsiChar in Delphi XE

In Delphi XE I am using the BASS audio library, which contains this function: function BASS_StreamCreateURL(url: PAnsiChar; offset: DWORD; flags: DWORD; proc: DOWNLOADPROC; user: ...
0
votes
2answers
753 views

Delphi Ansistrings

I have a case here, I am going to migrate over to delphi 2011 XE from Delphi 7, and to my surprise many components will have problems due to ansistrings, in delphi xe they look like japanese / chinese ...
-2
votes
0answers
74 views

quickly saving a Delphi Record containing Unicode elements to file as an “Ansi” File

I have a legacy dll (no source) that reads files generated by a Delphi program. We do have source for the delphi program. The program was originally written in D6. We are now using Delphi XE and ...