Tagged Questions
5
votes
2answers
510 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 ...
1
vote
2answers
173 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
...