4
votes
4answers
168 views

Delphi Unicode String Length in Bytes

I'm working on porting some Delphi 7 code to XE4, so, unicode is the subject here. I have a method where a string gets written to a TMemoryStream, so according to this embarcadero article, I should ...
0
votes
1answer
30 views

Indy IMAPClient UIDRetrieveAllEnvelopes not getting other character set properly

Using: Delphi XE2, Windows 8 with US-English as default language I am writing an email client with Delphi. I'm using TIdIMAP4 to connect to a GMail mailbox via IMAP and getting the message list like ...
0
votes
1answer
111 views

Exception Delphi TClientDataSet, TStringStream and TWideStringField

When i try to load a Stream to a ClientDataSet i get the following exception: Mismatch in datapacket The ClientDataSet has several WideStringfields, so i tried it with an Encoding in ...
-1
votes
1answer
198 views

How do I modify my Char based encryption code to work with Unicode Delphi?

I'm stuck trying to make some legacy Delphi 2007 code work in Delphi XE2. Function EncryptionWithPassword(Str,Pwd: AnsiString; Encode: Boolean): AnsiString; var ...
0
votes
2answers
135 views

How to read or write huge Unicode files?

I need to read huge Unicode files into my program and convert to ANSI for parsing and for some files, store them again as Univode while others should be in ANSI code page. As I have understood it, ...
2
votes
1answer
217 views

Error calling DLL with Unicode Delphi

I have a DLL with this function signature: function KP_RecuperarDadosFabricante(EnderecoIp, ChaveAcesso, Porta: string; Return: PAnsiChar): Integer; stdcall; external 'Key.dll'; This is the ...
2
votes
1answer
111 views

Is there ContainsStr equivalent for unicode strings?

Today I was fixing up some warnings in our code and one of them is "W1058 Implicit string cast with potential data loss from 'string' to 'AnsiString'" in ContainsStr function. After searching for a ...
1
vote
2answers
438 views

How to handle UTF-8 and ANSI conversion before Delphi 2009?

In Delphi 2009 we have: RichEdit1.Lines.LoadFromFile(OpenDialog1.FileName,TEncoding.UTF8); RichEdit1.Lines.SaveToFile(OpenDialog2.FileName,TEncoding.Unicode); How do I do that on Delphi 2006 if ...
1
vote
2answers
347 views

Delphi 7 calling DelphiXE2 dll getting corrupt widestrings

I have a Delphi 7 application that needs to call a SOAP API that is much too new for the available SOAP importers. I have satisfied myself that D7 can't call the SOAP API without too much effort to be ...
2
votes
1answer
172 views

How to pass string to an array of PAnsiChar?

Something strange happens when I try to pass strings from the Lines of a TMemo control to an array of PChar. At the end of the routine, the last string in the array is duplicated. I was able to ...
0
votes
2answers
482 views

Calling external dll with array of pchar as parameter in XE

I have a delphi project that works fine in delphi 6, but when I upgraded to XE it does not work. I know it has to do with the new unicode type in delphi XE, I have tried changing the definition of the ...
2
votes
1answer
109 views

Saving VirtualStringTree Node Data

I am trying to move a project from D6 to D-XE3. I am getting garbage when saving and loading the tree data in the OnSaveNode and OnLoadEvents using version 5.10 of VirtualStringTree. I'm probably not ...
1
vote
2answers
274 views

Why doesn't TStringStream remove the BOM when converting to a string?

We have a library function that goes like this: class function TFileUtils.ReadTextStream(const AStream: TStream): string; var StringStream: TStringStream; begin StringStream := ...
4
votes
2answers
690 views

Handling of Unicode Characters using Delphi 6

I have a polling application developed in Delphi 6. It reads a file, parse the file according to specification, performs validation and uploads into database (SQL Server 2008 Express Edition) We had ...
0
votes
1answer
83 views

Add Unicode support to TreeNT component

I am using TreeNT Component in my application. I am working on migrating the application to XE2. I have recompiled the component in XE2. When running its not showing the node caption in the window. ...
5
votes
3answers
447 views

unicode text file output differs between XE2 and Delphi 2009?

When I try the code below there seem to be different output in XE2 compared to D2009. procedure TForm1.Button1Click(Sender: TObject); var Outfile:textfile; myByte: Byte; begin ...
3
votes
2answers
272 views

Decode UTF-8 encoded Cyrillic with Delphi 2007

I am working in Delphi 2007 (no Unicode support) and I am retrieving XML and JSON data from the Google Analytics API. Below is some UTF-8 encoded data that I get for a URL referral path: ...
0
votes
1answer
197 views

Delphi: Upgrade from 6 to XE2 - TStringList

We have to upgrade to XE2 (from Delphi6). I collected many informations about this, but one of them isn't clear for me. We are using String - what is AnsiString in XE. As I know we must replace all ...
0
votes
3answers
233 views

winapinameA vs winapinameW - Unicode vs Ansi - Delphi XE2

I am using Delphi XE2 and importing SHGetFolderPath from Shell32.dll. I am running windows vista x64. When running SHGetFolderPathA The result is unclear. I.E.: uses Windows; function ...
0
votes
2answers
271 views

delphi 2007 display unicode U+1F48B in UTF-8 string or any other way

I have a sqlite database (UTF-8 encoding). And inside the database i have such record (hex bytes): D0 9E D0 BA 29 F0 9F 92 8B F0 9F 92 8B Thus the bytes are not alligned, that is: $D09E = O $D0BA ...
1
vote
2answers
537 views

Why does Str() give “W1057 Implicit string cast from 'ShortString' to 'string'”?

Consider: function x_StrZero(N: Double; W: Integer; D: Integer = 0): String; var S : String; begin Str(N:W:D,S); S := Trim(S); This gives W1057 Implicit string cast from 'ShortString' to ...
0
votes
1answer
348 views

Can WinInet HttpQueryInfo return raw bytes? (HTTP Headers with unicode characters)

The built-in routine HttpQueryInfo returns a string, not actual bytes. Normally that is not a problem. However, lately I have begin to encounter a problem with servers issuing redirects where the ...
0
votes
1answer
149 views

How can I test my WideReplace function?

OS: Hungarian Windows (Windows 1250) Under Delphi 6 Prof there is no WideStringPos, WideStringCopy, WideStringReplace... But in an XML based project I need to use them. Because that I tried to ...
4
votes
2answers
426 views

How to set default value for a function parameter of type TEncoding?

Converting from D2007 to XE2, I converted this function function Add_Line( FileStream : TFileStream; ALine : string) : boolean; to function Add_Line( FileStream : TFileStream; ALine : string; Enc: ...
2
votes
2answers
2k views

Widestring to string conversion in Delphi 7

my app is a non-unicode app written in Delphi 7. I'd like to convert unicode strings to ANSI with this function : function convertU(ws : widestring) : string; begin result := string(ws); end; I ...
4
votes
2answers
180 views

Why the SizeOf(Char) = 2 in Delphi2009+?

I am wondering: SizeOf(Char) = 2 in never Delphi versions, but this is not enough to store all integer mappings for characters defined in unicode table, right? (As far as I know there is more ...
0
votes
1answer
221 views

Why doesn't my algorithm for inverting character values work when they're stored in a Delphi XE2 ShortString?

I have the following code : user_s.username := EnDecrypt(Edit_username.Text); The function is the following : function EnDeCrypt(const Value : String) : String; var CharIndex : integer; begin ...
1
vote
1answer
536 views

Calling delphi 2006 dll with a pchar parameter from delphiXE

Since I've upgraded from delphi 5 to XE I'm struggling to use specific Dlls that were compiled a while ago. My blocking point seems related to the unicode/ansi character but I haven't found out how to ...
0
votes
3answers
699 views

Unicode PChar from Delphi 2006

I have a DLL, written in XE2 that takes a PChar as a parameter (therefore being a unicode string). I was hoping to write an application in Delphi 2006 that calls this DLL. Is this possible, how do I ...
0
votes
1answer
418 views

Using Unicode characters with Delphi XE2

I'm looking at converting one of our applications to Delphi XE2 and generally take the opportunity to bring it up to date. One of the features of the application is a StringGrid that displays a ...
1
vote
1answer
294 views

Read Unicode/ANSI from Console

I use this to read a widestring out of the cmd (Windows Shell). var pBuffer : array [0..250] of WideChar; aBuffer : array [0..250] of Char; RealUnicode : Integer; ExtendedAscii : ...
1
vote
1answer
123 views

OEMToCharW returns wrong characters

I read the input buffer from a console application (CMD) like this: var pBuffer : array [0..2400] of Widechar; dBuffer : array [0..2400] of WideChar; CReadBuffer : Cardinal; BytesRead : ...
1
vote
2answers
322 views

Delphi, MSXML2.XMLHTTP, PHP and Win-1250 charset encoding

Hoi! I trying to make a webservice in Windows. The client is Delphi 6, with MSXML2.XMLHTTP call, and other side is PHP. First I tested: can I receive hungarian XML? The PHP source was UTF-8 ...
0
votes
2answers
566 views

Delphi VirtualKey to WideString/UNICODE using TNT controls on non-unicode Delphi 7

I am using this code to convert a virtual key to WideString: function VKeytoWideString (Key : Word) : WideString; var WBuff : array [0..255] of WideChar; KeyboardState : TKeyboardState; ...
0
votes
0answers
752 views

MessageBoxW/Memo/TEdit show UNICODE character(s)

I use this function to READ UTF-8 encoded data from the RCDATA Resource: function ReadResourceW(ResourceName : WideString): WideString; // for UTF-8 and RCDATA var ServerModule: HMODULE; ...
2
votes
2answers
302 views

Get the name of the program executable (as in paramstr(0)) but get it as a Unicode string in Delphi 7?

I want to copy a file from the selflocation to another location like that: var NewFile : WideString; MyOwnLocation : WideString; begin NewFile := 'C:\mycopy.exe'; // CopyFileW ...
0
votes
1answer
668 views

Delphi XE2: UTF16LE -> UTF8

URL : http://www.gagalive.kr/livechat1.swf?chatroom=~~~BBQ [1]------------------------------------------------------------------- procedure TForm1.FormCreate(Sender: TObject); begin ...
0
votes
2answers
295 views

VB 6.0 -> Delphi XE2 Conversion

Public Function UTF8FromUTF16(ByRef abytUTF16() As Byte) As Byte() Dim lngByteNum As Long Dim abytUTF8() As Byte Dim lngCharCount As Long On Error GoTo ConversionErr ...
3
votes
1answer
630 views

Unicode conversion, database woes (Delphi 2007 to XE2)

Currently, I am in the process of updating all of our Delphi 2007 code base to Delphi XE2. The biggest consideration is the ANSI to Unicode conversion, which we've dealt with by re-defining all base ...
0
votes
1answer
388 views

write arabic in Excel sheet by delphi? [closed]

I want to write Arabic text in an Excel Sheet by using Delphi. When I write on the sheet I get something like this ÌÇÝÇ. Also, how can I change the excel data type from Delphi code?
0
votes
1answer
223 views

What determines if a variable of type UnicodeString represents a Unicode string or an ANSI string?

I'm experienced with Delphi but new to Unicode. The embedded Delphi XE2 documentation about UnicodeString (System.UnicodeString) says: "Delphi utilizes several string types. UnicodeString can ...
3
votes
1answer
183 views

WCF and Delphi - Should I use bytes[] or string?

I have created an WCF application that will be consumed by a Delphi 7 class. AFAIK, C# string type is UTF16 and Delphi's 7 string type is Ansi. The question is: because of C# and Delphi string types ...
2
votes
2answers
430 views

Searching for Unicode chars from a raw byte array - Free Pascal\Lazarus or Delphi

I don't want to bore people with the explanation of why and how so I 'll just jump right in. I have an array of bytes containing raw byte data. The array is 1000 bytes. I want to go through that ...
2
votes
1answer
2k views

UTF8Encode in Delphi XE2

I'm trying to convert string using Var encode:ansistring; begin encode:=UTF8Encode('اختبار'); showmessage(encode); end; It's working fine in Delphi 7 but in Delphi XE2 it's send Text as ...
1
vote
1answer
566 views

Advantage Database Server 10 error 5211 - There is an error converting Unicode string

I'm converting a D7 app into D2009 and I've faced an issue with the Advantage Database Server (Local). Whenever I include non-parameterized Turkish characters in queries I get the error [iAnywhere ...
2
votes
1answer
776 views

Get IHTMLElement.body.innerHTML as ansi string

I have the html markup with unicode symbol: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML xmlns:o = "urn:schemas-microsoft-com:office:office"><HEAD> <META ...
1
vote
1answer
275 views

Unicode version for Delphi (XE2)

We are upgrading our application from Delphi 2007 to Delphi XE2, which includes unicode support as well. Our desired unicode version support is 3.2 and above. Which Unicode version does Delphi ...
1
vote
1answer
140 views

Get alias of unicode symbols

Are there any WinAPI to get the name of the Unicode character? At the moment I only know one way is to parse http://unicode.org/Public/6.1.0/ucd/NamesList.txt file.
2
votes
2answers
1k views

Not able to send UTF-8 email using delphi indy

Here is my code Email body has got some unicode characters LSMTP := TIdSMTP.Create(nil); try LMsg := TIdMessage.Create(LSMTP); try with LMsg do begin Subject := Subj; ...
0
votes
2answers
2k views

Delphi decode json/utf8 escaped text

I'm writing a module for complicated application and my module should process json response, returned by web server. So, my issue is about how can I decode such kind of text: ...

1 2 3 4 5