Tagged Questions
13
votes
4answers
438 views
How do I compare unicode strings containing non-english characters to sort alpabetically?
I am trying to sort array/lists/whatever of data based upon the unicode string values in them which contain non-english characters, I want them sorted correctly alphabetically.
I have written a lot ...
13
votes
4answers
12k 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:= ...
12
votes
6answers
457 views
Any hints for those that want to upgrade from Delphi 7 (and down) to Delphi 2010?
After update 4 and 5 I am interested to re-evaluate Delphi 2010. This time I intend to port some of my code (small scale) to see how difficult is to do it at large scale.
The main issue seems to be ...
11
votes
2answers
517 views
Delphi2010: Writing code to assign Caption containing Unicode literal values or load unicode symbols from text file?
Please, tell me how to make a Unicode program in Delphi 2010.
I have English Windows and "Current language for non-Unicode programs" is English too. Static controls look good but if I try to change ...
9
votes
4answers
740 views
CharInSet doesn't work with non English letters?
I have updated an application from Delphi 2007 to Delphi 2010, everything went fine, except one statement that compiled fine but not working which is:
If Edit1.Text[1] in ['S','س'] then
...
9
votes
5answers
2k 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 ...
7
votes
2answers
386 views
Why Does SetString Take Less Memory in Delphi (with Unicode)?
This is Delphi 2009, so Unicode applies.
I had some code that was loading strings from a buffer into a StringList as follows:
var Buffer: TBytes; RecStart, RecEnd: PChar; S: string;
...
7
votes
2answers
739 views
Delphi 2010 Wide functions vs. String functions
We're currently converting a Delphi 2007 project to Delphi 2010. We were already using Unicode (via WideStrings and TNT Unicode Controls).
I was expecting to replace all Wide functions, e.g. ...
7
votes
2answers
6k 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], ...
7
votes
4answers
2k 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 ...
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 ...
7
votes
4answers
3k 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?
7
votes
6answers
2k 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 ???????
6
votes
1answer
130 views
E2010 Incompatible Types, why?
I'm getting this error:
[DCC Error] JwaStrSafe.pas(2277): E2010 Incompatible types: 'PSTRSAFE_LPWSTR' and 'PSTRSAFE_LPTSTR'
The following is the relevant portion of code from JwaStrSafe.pas (from ...
6
votes
2answers
359 views
Change special characters in array Delphi
Some string that I am getting is UTF-8 encoded, and contains some special characters like
Å¡, Ä‘, Ä etc. I am using StringReplace() to convert it to some normal text, but I can only convert one type ...
6
votes
3answers
675 views
Multilangual Unicode rendering in opengl
I have to extend an OpenGL-Rendering system to support international characters (especially Hebrew, Arabic and cyrillic).
Development platform is Windows(XP|Vista|7), alas using Embercardero Delphi ...
6
votes
3answers
5k 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 ...
6
votes
3answers
2k 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 ...
5
votes
6answers
519 views
What is the equivalent of chr(153) (The TM SYMBOL) in Unicode
In earlier Delphi versions, I could use
s:=chr(153);
to get a trademark symbol in a string. In Delphi 2010, that doesn't work any longer, perhaps to do with unicode. What is the equivalent code ...
5
votes
2answers
894 views
Reading unicode characters from text file in Delphi 2009
I have the following piece of code to read Japanese Kanji characters from UTF-8 format Text file and then load it into Memo.
Var F:textFile;
S:string;
Begin
AssignFile(F,'file.txt');
Reset(F);
...
5
votes
3answers
2k views
Working with Unicode strings in Delphi 7
I need to write a program which will browse through strings of various lengths and select only those which are written using symbols from set defined by me (particularly Japanese letters). Strings ...
5
votes
2answers
3k views
Problem with Indy IdHttp Post in Delphi 2010
I have problem with Indy IdHttp Post method.
Function CallRpc() compiled with Delphi 2007 works fine but same code compiled with Delphi 2010 raises exception.
What do I have to consider when I ...
5
votes
4answers
291 views
Get ready for Delphi 2009 and up when developing with Delphi 7?
I'm developing a Word addin in Delphi 7, but soon I'll upgrade it to Delphi 2010, as you know, since version 2009 Delphi introduces the new string type UnicodeString which equals to the keyword string ...
5
votes
5answers
3k 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 ...
5
votes
2answers
858 views
“Delphi Fundamentals” in Delphi 2009
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 project ...
5
votes
6answers
7k views
Handling a Unicode String in Delphi Versions <= 2007
Background: This question relates to versions of Delphi below 2009 (ie without Unicode support built in). I have a specification that requires me to transmit a Unicode encoded string over a TCP ...
5
votes
3answers
2k 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
3answers
187 views
Unicode Precomposition and Decomposition with Delphi
The Wikipedia entry for Subversion contains a paragraph about problems with different ways of Unicode encoding:
While Subversion stores filenames as Unicode, it does not specify if
...
4
votes
4answers
758 views
Delphi XE AnsiStrings with escaped combining diacritical marks
What is the best way to convert a Delphi XE AnsiString containing escaped combining diacritical marks like "Fu\u0308rst" into a frienly WideString "Fürst"?
I am aware of the fact that this is not ...
4
votes
6answers
1k views
Delphi WideString and Delphi 2009+
I am writing a class that will save wide strings to a binary file. I'm using Delphi 2005 for this but the app will later be ported to Delphi 2010. I'm feeling very unsure here, can someone confirm ...
4
votes
5answers
1k views
Wrong Unicode conversion, how to store accent characters in Delphi 2010 source code and handle character sets?
We are upgrading our project from Delphi 2006 to Delphi 2010. Old code was:
InputText: string;
InputText := SomeTEditComponent.Text;
...
for i := 1 to length(InputText) do
if InputText[i] in ...
4
votes
2answers
670 views
How to identify unicode keys on key press?
My application uses unicode characters and i have several text fields where i want to restrict user from inputing special characters like :'";
begin
if not (Key in ['a'..'z','A'..'Z',' ...
4
votes
2answers
648 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
5answers
759 views
When and Why Should I Use TStringBuilder?
I converted my program from Delphi 4 to Delphi 2009 a year ago, mainly to make the jump to Unicode, but also to gain the benefits of all those years of Delphi improvements.
My code, of course, is ...
4
votes
1answer
2k 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
3answers
633 views
Migrating Delphi DFM's with special characters to D2009
I've got a number of Delphi forms where we use a couple of special characters - the 'degree' symbol, and the 'ohms' symbol. These characters are used in label captions saved in the DFM file and are ...
4
votes
8answers
6k views
MD5 Hashing in Delphi 2009
In borland delphi 7 and even in delphi 2007 everything worked, but in delphi 2009 it just returns the wrong hash!
I use wcrypt2 script (http://pastebin.com/m2f015cfd)
Just have a look:
string : ...
4
votes
6answers
3k views
Delphi 2009 + Unicode + Char-size
I just got Delphi 2009 and have previously read some articles about modifications that might be necessary because of the switch to Unicode strings.
Mostly, it is mentioned that sizeof(char) is not ...
3
votes
3answers
113 views
Why doesn't my encryption work after I upgrade beyond Delphi 2007?
I recently took some code from Delphi 2007 and upgraded it to Delphi 2009. That may or may not be relevant.
But when I run the code on my computer the decryption of the password is not decrypting ...
3
votes
2answers
138 views
With Delphi 2010, how can I convert a Unicode string to a hexadecimal string, and back?
I am using Delphi 2010 and I have a need to be able to convert a string to a hexadecimal string, and then later be able to convert that hexadecimal string back to the original unicode string.
For ...
3
votes
1answer
95 views
Is it safe to type cast between UnicodeChar and Integer?
In pre-2009 Delphi (ANSI land) you could use Ord and Chr to convert a character to a byte and vice versa. That was good, for example when you needed to operate a char as a byte:
var
ch: char;
begin
...
3
votes
3answers
203 views
How do i construct a WideString with a diacratic in a non-unicode Delphi version?
i am trying to construct a (test) WideString of:
á (U+00E1 Small Letter Latin A with acute)
but using it's decomposed form:
LATIN SMALL LETTER A (U+0061) COMBINING ACUTE ACCENT (U+0301)
...
3
votes
1answer
531 views
Converting Delphi 2007 string encryption routine to Delphi XE
We have a Delphi 2007 routine used to encrypt passwords in a table. The routine was originally grabbed from a CompuServe post a decade or more ago, and a significant amount of data encrypted with this ...
3
votes
3answers
719 views
Delphi. Show gotten with idHTTP.Get Unicode text in multilanguage Windows
I need your help. Please help me.
I have Delphi 2010
I try to idHTTP.Get a file with Unicode text (Russian) from site into MemoryStream on English version of Windows 7.
Then I load this ...
3
votes
2answers
351 views
How to migrate from Delphi6 to Delphi2010 (Unicode Problem)
Hi I was using the Francois Piette's RasDial with Delphi 6, but it stopped working in Delphi 2010
How can I keep using these functions like before?
class function Encryption.DecriptPasswd(strPasswd: ...
3
votes
1answer
1k views
Convert hex string to ansistring in Delphi 2010
I used to use this function to convert hex string to string in Delphi 6 :
const
testSign = '207F8060287F585054505357FFD55861';
function Hex2Dec(const data: string): byte;
var
nH1, nH2: byte;
begin
...
3
votes
1answer
393 views
Capture Console in Delphi 2009 and above
The code below works for Delphi XE, but the 2400 buffersize is pretty ugly.
Anyone have some suggestions on cleaning this routine up ?? And making the 2400 limit disappear (without defining a 64000 ...
3
votes
3answers
950 views
Delphi compiler error E2064 left side cannot be assigned to
I inherited a Delphi application and I know nothing about object pascal.
It's a BPL that I need to compile into the new version of C++ Builder XE.
When I run a make I get the error:
E2064 left side ...
3
votes
1answer
397 views
How Do I Properly Call GetLongPathName Using Delphi 2009 and Unicode Strings?
I need to change the old Win98 short path names to long path names. I had a routine that worked fine with Delphi 4, but when I upgraded to Delphi 2009 and Unicode, it didn't work with Unicode strings.
...
3
votes
4answers
518 views
How Can I Get Around this EOutOfMemory Exception When Encoding a Very Large File?
I am using Delphi 2009 with Unicode strings.
I'm trying to Encode a very large file to convert it to Unicode:
var
Buffer: TBytes;
Value: string;
Value := Encoding.GetString(Buffer);
This ...