6
votes
4answers
270 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
5answers
527 views
D2009 TStringlist ansistring
The businesswise calm of the summer has started so I picked up the migration to D2009. I roughly determined for every subsystem of the program if they should remain ascii, or can be unicode, and …
5
votes
4answers
530 views
Most Efficient Unicode Hash Function for Delphi 2009
I am in need of the fastest hash function possible in Delphi 2009 that will create hashed values from a Unicode string that will distribute fairly randomly into buckets.
I originally started with …
5
votes
2answers
476 views
“Delphi Fundamentals” in Delphi 2009
Hello,
Has anybody used/converted "Delphi Fundamentals" in Delphi 2009? - http://fundementals.sourceforge.net/
I'm using Dictionaries (cArrays.pas,cDictionaries.pas,cStrings.pas,cTypes.pas) in my …
5
votes
4answers
1k views
Is WideString identical to String in Delphi 2009
I'm getting some weird behaviour recompiling some applications in 2009 that used widestrings at various points.
In a Delphi 2009 App is Widestring identical to String?
5
votes
3answers
967 views
Porting a unicode enabled Delphi 2006 application to Delphi 2009
I have an application which is fully unicode compatible in Delphi 2006. I had replaced all AnsiStrings with WideStrings, replaced all VCL controls with TNT controls, and changed all string functions …
4
votes
2answers
220 views
Is there any tools/utility to convert “string” to “AnsiString” in pascal source files?
Delphi 2009 and above support unicode. I have few legacy pascal source files that I wish to make it compile in Delphi 2009/2010 as well as Delphi 2007 and below.
A quick and safe way is replace
…
4
votes
4answers
459 views
How do the new string types work in Delphi 2009/2010?
I have to convert a large legacy application to Delphi 2009 which uses strings, AnsiStrings, WideStrings and UTF8 data all over the place and I have a hard time to understand how the new string types …
4
votes
1answer
635 views
How to call Microchip PIC USB DLL with Delphi 2009
Not a question, just a statement to help anyone else who might spend hours getting the Microchip PIC USB DLL to work properly with Unicode.
It expects several strings, and although these are simple …
4
votes
4answers
2k views
Converting TMemoryStream to String in Delphi 2009
We had the following code previous to Delphi 2009:
function MemoryStreamToString(M: TMemoryStream): String;
var
NewCapacity: Longint;
begin
if (M.Size = 0) or (M.Memory = nil) then
Result:= …
4
votes
6answers
1k views
Unicode Console Application in Delphi 2009
How can I create unicode console application with Delphi 2009?
If I do like this:
{$APPTYPE CONSOLE}
uses
SysUtils;
begin
writeln('öüğşç سيمانتت');
end.
I get the following:
ougsc ???????
4
votes
3answers
1k views
What is the best way to convert TBytes (UTF-16) to a string?
What is the best way to convert an array of bytes declared as TBytes to a unicode string in Delphi 2009? In my particular case, the TBytes array has UTF-16 encoded data already (2 bytes for each …
4
votes
3answers
1k views
Delphi 2009 and Firebird 2.1 = Full Unicode?
Has anyone started making Unicode Apps or converting Existing Apps into Unicode?
How are you tweaking Firebird to have the least problems, especially the CHARSET attribute?
Is there any problem …
3
votes
3answers
465 views
Writing a string to a TFileStream in Delphi 2010
I have Delphi 2007 code that looks like this:
procedure WriteString(Stream: TFileStream; var SourceBuffer: PChar; s: string);
begin
StrPCopy(SourceBuffer,s);
Stream.Write(SourceBuffer[0], …
3
votes
4answers
277 views
What do I need to know to upgrade a complex application from C++Builder 2007 to 2010?
My company's main application is mostly written in C++ (with some Delphi code and components). We are upgrading from RAD Studio 2007 to 2010 for the next release, starting in about a week. What do I …
