active questions tagged delphi+unicode - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T15:59:25Z http://stackoverflow.com/feeds/tag/delphi+unicode http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1830021/is-an-update-to-d2010-really-meaningful 2 Is an update to D2010 really meaningful stanleyxu2005 2009-12-02T00:55:28Z 2009-12-02T06:08:34Z <p>I am trying to migrate my own projects to delphi 2010. But it seems to be very difficult. </p> <ol> <li>I use TntControls for old projects. If I remove this library, some runtime functions must be re-implemented by myself. For instance: convert UnicodeString to a specified code page.</li> <li>The "SizeOf", "Length", FillChar() still confuse me. Compiler will throw a warning, if SizeOf() should be replaced with Length(). But I have not found any idiot-safe tutorials for me.</li> <li>A confusing warning, when trying to cast an AnsiString to UnicodeString. This conversation won't cause a data lose, will it?</li> <li>Many code (zip, string utils, etc.) must be retested. </li> </ol> <p>Too many headaches... Can someone share experience on migrating existing project from a very old delphi to delphi 2010?</p> http://stackoverflow.com/questions/530052/looking-for-a-pdf-file-parser 1 Looking for a PDF file parser. Toby Allen 2009-02-09T21:28:43Z 2009-12-01T07:33:11Z <p>Does anyone know of a PDF file parser that I could use to pull out sections of text from the plaintext pdf file? Specifially I want a way to be able to reliably pull out the section of text specific to annotations?</p> <p>Delphi, C# RegEx I dont mind.</p> http://stackoverflow.com/questions/1818291/is-there-any-tools-utility-to-convert-string-to-ansistring-in-pascal-source-f 4 Is there any tools/utility to convert "string" to "AnsiString" in pascal source files? Chau Chee Yang 2009-11-30T07:21:24Z 2009-11-30T17:27:55Z <p>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.</p> <p>A quick and safe way is replace</p> <ul> <li>String to AnsiString</li> <li>PChar to PAnsiChar</li> <li>Char to AnsiChar</li> </ul> <p>Is there any utility available that able to parse .pas file and make such replacement?</p> http://stackoverflow.com/questions/1797423/convert-function-to-delphi-2010-unicode 1 convert function to delphi 2010 (unicode) pleonardomv 2009-11-25T14:50:19Z 2009-11-25T17:35:22Z <p>How to convert this function to Delphi 2010 (Unicode)? </p> <pre><code>function TForm1.GetTarget(const LinkFileName:String):String; var //Link : String; psl : IShellLink; ppf : IPersistFile; WidePath : Array[0..260] of WideChar; Info : Array[0..MAX_PATH] of Char; wfs : TWin32FindData; begin if UpperCase(ExtractFileExt(LinkFileName)) &lt;&gt; '.LNK' Then begin Result:='NOT a shortuct by extension!'; Exit; end; CoCreateInstance(CLSID_ShellLink, nil, CLSCTX_INPROC_SERVER, IShellLink, psl); if psl.QueryInterface(IPersistFile, ppf) = 0 Then Begin MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, PAnsiChar(LinkFileName), -1, @WidePath, MAX_PATH); ppf.Load(WidePath, STGM_READ); psl.GetPath((@info), MAX_PATH, wfs, SLGP_UNCPRIORITY); Result := info; end else Result := ''; end; </code></pre> <p>Thanks </p> http://stackoverflow.com/questions/732666/converting-tmemorystream-to-string-in-delphi-2009 4 Converting TMemoryStream to String in Delphi 2009 dmillam 2009-04-09T03:24:23Z 2009-11-17T09:04:53Z <p>We had the following code previous to Delphi 2009:</p> <pre> <code>function MemoryStreamToString(M: TMemoryStream): String; var NewCapacity: Longint; begin if (M.Size = 0) or (M.Memory = nil) then Result:= '' else begin if TMemoryStreamProtected(M).Capacity = M.Size then begin NewCapacity:= M.Size+1; TMemoryStreamProtected(M).Realloc(NewCapacity); end; NullString(M.Memory^)[M.Size]:= #0; Result:= StrPas(M.Memory); end; end; </code></pre> <p>How might we convert this code to support Unicode now with Delphi 2009?</p> http://stackoverflow.com/questions/1005010/most-efficient-unicode-hash-function-for-delphi-2009 5 Most Efficient Unicode Hash Function for Delphi 2009 lkessler 2009-06-17T03:43:32Z 2009-11-14T09:35:55Z <p>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.</p> <p>I originally started with <a href="http://stackoverflow.com/users/4997/gabr">Gabr</a>'s HashOf function from GpStringHash:</p> <pre><code>function HashOf(const key: string): cardinal; asm xor edx,edx { result := 0 } and eax,eax { test if 0 } jz @End { skip if nil } mov ecx,[eax-4] { ecx := string length } jecxz @End { skip if length = 0 } @loop: { repeat } rol edx,2 { edx := (edx shl 2) or (edx shr 30)... } xor dl,[eax] { ... xor Ord(key[eax]) } inc eax { inc(eax) } loop @loop { until ecx = 0 } @End: mov eax,edx { result := eax } end; { HashOf } </code></pre> <p>But I found that this did not produce good numbers from Unicode strings. I noted that Gabr's routines have not been updated to Delphi 2009.</p> <p>Then I discovered HashNameMBCS in SysUtils of Delphi 2009 and translated it to this simple function (where "string" is a Delphi 2009 Unicode string):</p> <pre><code>function HashOf(const key: string): cardinal; var I: integer; begin Result := 0; for I := 1 to length(key) do begin Result := (Result shl 5) or (Result shr 27); Result := Result xor Cardinal(key[I]); end; end; { HashOf } </code></pre> <p>I thought this was pretty good until I looked at the CPU window and saw the assembler code it generated:</p> <pre><code>Process.pas.1649: Result := 0; 0048DEA8 33DB xor ebx,ebx Process.pas.1650: for I := 1 to length(key) do begin 0048DEAA 8BC6 mov eax,esi 0048DEAC E89734F7FF call $00401348 0048DEB1 85C0 test eax,eax 0048DEB3 7E1C jle $0048ded1 0048DEB5 BA01000000 mov edx,$00000001 Process.pas.1651: Result := (Result shl 5) or (Result shr 27); 0048DEBA 8BCB mov ecx,ebx 0048DEBC C1E105 shl ecx,$05 0048DEBF C1EB1B shr ebx,$1b 0048DEC2 0BCB or ecx,ebx 0048DEC4 8BD9 mov ebx,ecx Process.pas.1652: Result := Result xor Cardinal(key[I]); 0048DEC6 0FB74C56FE movzx ecx,[esi+edx*2-$02] 0048DECB 33D9 xor ebx,ecx Process.pas.1653: end; 0048DECD 42 inc edx Process.pas.1650: for I := 1 to length(key) do begin 0048DECE 48 dec eax 0048DECF 75E9 jnz $0048deba Process.pas.1654: end; { HashOf } 0048DED1 8BC3 mov eax,ebx </code></pre> <p>This seems to contain quite a bit more assembler code than Gabr's code. </p> <p>Speed is of the essence. Is there anything I can do to improve either the pascal code I wrote or the assembler that my code generated?</p> http://stackoverflow.com/questions/1434413/writing-a-string-to-a-tfilestream-in-delphi-2010 3 Writing a string to a TFileStream in Delphi 2010 JosephStyons 2009-09-16T17:32:25Z 2009-11-11T08:26:33Z <p>I have Delphi 2007 code that looks like this:</p> <pre><code>procedure WriteString(Stream: TFileStream; var SourceBuffer: PChar; s: string); begin StrPCopy(SourceBuffer,s); Stream.Write(SourceBuffer[0], StrLen(SourceBuffer)); end; </code></pre> <p>I call it like this:</p> <pre><code>var SourceBuffer : PChar; MyFile: TFileStream; .... SourceBuffer := StrAlloc(1024); MyFile := TFileStream.Create('MyFile.txt',fmCreate); WriteString(MyFile,SourceBuffer,'Some Text'); .... </code></pre> <p>This worked in Delphi 2007, but it gives me a lot of junk characters in Delphi 2010. I know this is due to unicode compliance issues, but I am not sure how to address the issue.</p> <p>Here is what I've tried so far:</p> <ul> <li><p>Change the data type of SourceBuffer(and also the parameter expected by WideString) to PWideChar</p></li> <li><p>Every one of the <a href="http://stackoverflow.com/questions/1354092">suggestions listed here</a></p></li> </ul> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/527287/displaying-unicode-text-in-rave-reports-on-delphi-2009 0 Displaying unicode text in Rave Reports on Delphi 2009 Ryan Bates 2009-02-09T06:41:04Z 2009-11-09T07:32:18Z <p>I am in the process of porting a Delphi 2006 app to Delphi 2009. Out of the box support for unicode has been easy - almost no work required. Most 3rd party controls already have Delphi 2009 updates available.</p> <p>Rave Reports (latest version 7.6.1, available <a href="http://cc.codegear.com/item/26089" rel="nofollow">here</a>) has also been updated, but I cannot seem to get it to correctly display RTF text containing Japanese characters. In Delphi 2006, I loaded RTF to the DataMemo component in a RVCustomConnection's OnGetRow event by reading the RTF from a screen control (TLMDRichEdit) using streams and then doing a CustomConnection.WriteBlobData.</p> <p>In the report output, any RTF text now shows up as a series of rectanges and % signs. No readable text. All other text (displayed using Text and DataText components) displays correctly. </p> <p>Does anyone have any experience on how to get RTF containing unicode to display correctly? Is it even supported?</p> http://stackoverflow.com/questions/1686107/what-is-a-good-library-for-creating-pdfs-in-delphi-2010 2 What is a good library for creating PDFs in Delphi 2010? Zartog 2009-11-06T08:04:47Z 2009-11-08T06:53:21Z <p>What is a good library for creating PDFs in Delphi 2010?</p> <p>Pre Unicode I used PowerPDF, which though obsolete, was flexible enough to do what I wanted to do (very customized non-db/table based reports)</p> <p>I currently have PowerPDF compiling in Delphi 2010, but not yet working, and I'd rather not port and debug if there are any good Open Source PDF libraries already available for Delphi 2010...</p> http://stackoverflow.com/questions/1392409/what-do-i-need-to-know-to-upgrade-a-complex-application-from-cbuilder-2007-to-2 3 What do I need to know to upgrade a complex application from C++Builder 2007 to 2010? David M 2009-09-08T07:05:19Z 2009-11-06T22:16:05Z <p>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 need to know to ensure this upgrade goes smoothly?</p> <p>Points I have thought of so far are:</p> <ul> <li><p>Unicode. This one looks <i>really</i> complicated. Our app contains a horrible mix of std::string-s and AnsiString-s with casts to and from them. I have lots of questions about this, such as "is wstring capable of holding everything a UnicodeString can, and should we just do a search/replace", or "should we avoid all C++ string types altogether and use UnicodeString", "can we change all event handlers to use String though the existing <strike>.HPPs</strike> event handler method prototypes were compiler-translated to AnsiString", right down to basics such as "should we prefix all strings with L, or is the compiler smart enough with Unicode enabled to use Unicode strings", etc. Any insight on this would be really appreciated.</p> <p>We also need backwards compatibility. Our app uses its own binary tuple format that currently stores strings as an array of bytes. I need to upgrade this to read old files and, presumably, write new Unicode strings as well. How do I handle Unicode strings embedded in a binary format? Is there any generic way where I can point a UnicodeString at an array of bytes, that may be originally written as either ANSI bytes or Unicode, and it will figure out what they are?</p></li> <li><p>Third-party components. We use <a href="http://www.silverpointdevelopment.com/sptbxlib/index.htm" rel="nofollow">SpTBX</a> mainly, and it appears to be compatible.</p></li> <li><p>Project upgrades. The standard advice in the Codegear forums seems to be to manually recreate all project files when upgrading. This is an awful lot of work (7 projects (mostly libs) in our main app, plus half a dozen DLLs, a <i>lot</i> of files.) Is there any way to automate this?</p></li> <li><p>How's the linker look? We traditionally have a lot of trouble with the linker randomly crashing or running out of resources, though it got a lot better in 2007. This is one reason our main application is split into several libs - the linker cannot (hopefully, "could not, but now can"?) handle it otherwise.</p></li> <li><p>I know there's a new type library editor and format (it stores the IDL, ie text, and generates the TLB dynamically?) How well does this handle upgrading existing COM projects with a TLB? We have Delphi code and TLB that are built into the C++ application.</p></li> <li><p>Is there anything else I should be considering or be aware of?</p></li> </ul> <p>I have found:</p> <ul> <li><a href="http://stackoverflow.com/questions/1382362/installing-rad-studio-2007-and-rad-studio-2010-in-same-machine">2007 and 2010 co-existing</a>. I'm not sure I trust this answer since I have had issues with 2006 and 2007 on the same machine before.</li> <li>several answers about Unicode: <a href="http://stackoverflow.com/questions/1291338/write-unicode-string-into-file-with-codegear-c-builder-2009">writing strings with 2009</a> and <a href="http://stackoverflow.com/questions/1004838/transition-to-unicode-for-an-application-that-handles-text-files">generic transition to Unicode text</a> but none are answers for concerns, or the C++Builder-specific parts at all.</li> <li><a href="http://stackoverflow.com/questions/152528/are-there-guidelines-for-updating-cbuilder-applications-for-cbuilder-2009">This question about guidelines upgrading to 2009</a> but though the answers are helpful, they don't answer all the Unicode-related issues above.</li> <li>[Edit: added] Codegear documents for <a href="http://docs.embarcadero.com/products/rad%5Fstudio/delphiAndcpp2009/HelpUpdate2/EN/html/devcommon/unicodeinide%5Fxml.html" rel="nofollow">Unicode in RAD Studio</a> and <a href="http://docs.embarcadero.com/products/rad%5Fstudio/delphiAndcpp2009/HelpUpdate2/EN/html/devcommon/enablingunicode%5Fxml.html" rel="nofollow">things to look for when converting to Unicode</a></li> </ul> http://stackoverflow.com/questions/1678572/is-there-an-efficient-whole-word-search-function-in-delphi 2 Is There An Efficient Whole Word Search Function in Delphi? lkessler 2009-11-05T05:42:50Z 2009-11-05T23:15:40Z <p>In Delphi 2009 or later (Unicode), are there any built-in functions or small routines written somewhere that will do a reasonably efficient whole word search where you provide the delimiters that define the word, e.g.:</p> <pre><code>function ContainsWord(Word, Str: string): boolean; const { Delim holds the delimiters that are on either side of the word } Delim = ' .;,:(){}"/\&lt;&gt;!?[]'#$91#$92#$93#$94'-+*='#$A0#$84; </code></pre> <p>where: </p> <pre><code>Word: string; { is the Unicode string to search for } Str: string; { is the Unicode string to be searched } </code></pre> <p>I only need this to return a true or false value if the "Word" is in the string.</p> <p>There must be something for this somewhere, because the standard Find Dialog has "Match whole word only" as one of it's options.</p> <p>How is this normally (or best) implemented?</p> <p><hr></p> <p>Conclusion:</p> <p>RRUZ's answer was perfect. The SearchBuf routine was just what I needed. I can even go into the StrUtils routine, extract the code, and modify it to fit my requirements. </p> <p>I was surprised to find that SearchBuf doesn't first search for the word and then check for delimiters. Instead it goes through the characters of the string one at a time looking for a delimiter. If it finds one, then it checks for the string and another delimiter. If it doesn't find it, it then looks for another delimiter. For efficiency's sake, that's very smart!</p> http://stackoverflow.com/questions/1597768/delphi-7-personal-mysql-using-libmysql-dll-utf8 0 Delphi 7 Personal, MySQL using libmysql.dll + UTF8 michal 2009-10-20T22:58:43Z 2009-11-02T14:21:17Z <p>Hi, I'm using Delphi 7 Personal. To access MySQL database I'm using libmysql.dll + very simple wrapper, which is good enough for me. Except one thing ... it doesn't seem to handle Utf8... is that possible somehow to pass Utf8 strings from libmysql to Delphi? Please keep in mind I'm not using commercial delphi, this means no ADO / dbExpress... ;)</p> <p>Thanks in advance, m.</p> http://stackoverflow.com/questions/1634832/delphi-2010-or-2007-for-upgrading-delphi-3-project 2 Delphi 2010 or 2007 for upgrading Delphi 3 project? Larry Lustig 2009-10-28T02:17:51Z 2009-10-28T07:15:51Z <p>I've just received an assignment to upgrade an old Delphi 3 project that I wrote in 1999 to a newer version and add features (I previously discussed this in related questions <a href="http://stackoverflow.com/questions/1510168/move-project-from-delphi-3-to-delphi-2010">here</a> and <a href="http://stackoverflow.com/questions/1513983/which-features-of-delphi-2010-enterprise-version-are-valuable-to-you-and-why">here</a>). I was assuming that the appropriate route would be to first upgrade my development environment to Delphi 2010 and then port the application.</p> <p>I'm now considering whether to upgrade the application to my existing copy of Delphi 2007 instead in order to avoid the Unicode complications. The application runs at a single company in the United States and is tightly bound to requirements of a single state, so it would not benefit from Unicode support.</p> <p>My question is: would the additional hassle of dealing with Unicode issues outweigh the benefit of using the most recent version of Delphi? You may assume that I have no experience with Unicode.</p> http://stackoverflow.com/questions/1585760/when-and-why-should-i-use-tstringbuilder 2 When and Why Should I Use TStringBuilder? lkessler 2009-10-18T19:13:18Z 2009-10-19T09:29:02Z <p>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.</p> <p>My code, of course, is therefore all legacy code. It uses short strings that have now conveniently all become long Unicode strings, and I've changed all the old ANSI functions to the new equivalent.</p> <p>But with Delphi 2009, they introduced the TStringBuilder class, presumably modelled after the StringBuilder class of .NET.</p> <p>My program does a lot of string handling and manipulation, and can load hundreds of megabytes of large strings into memory at once to work with.</p> <p>I don't know a lot about Delphi's implementation of TStringBuilder, but I heard that some of its operations are faster than using the default string operations.</p> <p>My question is whether or not it is worthwhile for me to go through the effort and convert my standard strings to use the TStringBuilder class. What would I gain and lose from doing that?</p> <p><hr /></p> <p>Thank you for your answers and leading me to my conclusion, which is not to bother unless .NET compatibility is required. </p> <p>On his blog on <a href="http://www.deltics.co.nz/blog/?p=349" rel="nofollow">Delphi 2009 String Performance, Jolyon Smith states</a>:</p> <blockquote> <p>But it looks to me as if TStringBuilder is there primarily as a .NET compatibility fixture, rather than to provide any real benefit to developers of Win32 applications, with the possible exception of developers wishing or needing to single-source a Win32/.NET codebase where string handling performance isn’t a concern.</p> </blockquote> http://stackoverflow.com/questions/1571321/how-can-i-work-with-chinese-characters-from-a-database 2 How can I work with Chinese characters from a database? James 2009-10-15T09:43:37Z 2009-10-16T14:58:15Z <p>I am facing problem capturing Chinese characters in a dataset.</p> <p>In Delphi 2010 I have tried two kinds of components:</p> <ol> <li>Delphi default</li> <li>Developer Express components</li> </ol> <p>As result, those components that do not link to the datasource are working fine, but those components <em>do</em> that link to the datasource have a problem. The Chinese characters have been converted into question marks, except in the TDBMemo. See the image below.</p> <p>The dataset is a client-dataset with two fields:</p> <ol> <li>Name - string</li> <li>Description - Memo</li> </ol> <p>What should I do in order to get it work?</p> <p><img src="http://img97.imageshack.us/img97/9445/d2010unicodetestsimplif.gif" alt="Reference Image" title="" /></p> <p>type</p> <p>TForm1 = class(TForm)</p> <pre><code>ClientDataSet1: TClientDataSet; ClientDataSet1Name: TStringField; ClientDataSet1Description: TMemoField; DataSource1: TDataSource; ClientDataSet2: TClientDataSet; ClientDataSet2Name: TStringField; ClientDataSet2Description: TMemoField; DataSource2: TDataSource; </code></pre> http://stackoverflow.com/questions/383195/handling-a-unicode-string-in-delphi-versions-2007 3 Handling a Unicode String in Delphi Versions <= 2007 jamiei 2008-12-20T10:55:10Z 2009-10-15T11:10:18Z <p><strong>Background:</strong> 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 connection but I do not have Delphi 2009. </p> <p><strong>Question</strong> Is there a single function or very small library (I don't need too much bulk) that I can use to encode a single string into UTF-8 immediately prior sending over the wire? As a second part of my question: if there are UTF-8 encoded strings being sent back as a response, I guess I would then need another function to get it back into a Delphi string format. I understand the limitations of such Unicode support in this way.</p> http://stackoverflow.com/questions/1097163/is-there-some-functionality-in-for-delphi-that-converts-a-string-with-html-named 2 Is there some functionality in/for Delphi that converts a string with html named and numbered entities to unicode text? sinner 2009-07-08T10:00:43Z 2009-10-08T13:08:13Z <p>I read data from a mysql database that has is filled by php scripts. All special characters are converted to named or numbered html entities (for example &amp; a m p ; &amp; # 2 8 6 ;). I know of no way to convert these characters back to the original ones in Delphi as unicode strings. Did anyone ever find or even create such a function? This would be very helpful to me. Thanks! Marc</p> http://stackoverflow.com/questions/1531250/convert-function-to-delphi-2009-2010-unicode 0 convert function to delphi 2009/2010 (unicode) smartins 2009-10-07T12:11:20Z 2009-10-07T15:09:17Z <p>I'm slowly converting my existing code into Delphi 2010 and read several of the articles on Embarcaedro web site as well as Marco Cantú whitepaper.</p> <p>There are still some things I haven't understood, so here are two functions to exemplify my question:</p> <pre><code>function RemoveSpace(InStr: string): string; var Ans : string; I : Word; L : Word; TestChar: string[1]; begin Ans := ''; L := Length(InStr); if L &gt; 0 then begin for I := 1 to L do begin TestChar := Copy(InStr, I, 1); if TestChar &lt;&gt; ' ' then Ans := Ans + TestChar; end; end; RemoveSpace := Ans; end; function ReplaceStr(const S, Srch, Replace: string): string; var I: Integer; Source: string; begin Source := S; Result := ''; repeat I := Pos(Srch, Source); if I &gt; 0 then begin Result := Result + Copy(Source, 1, I - 1) + Replace; Source := Copy(Source, I + Length(Srch), MaxInt); end else Result := Result + Source; until I &lt;= 0; end; </code></pre> <p>For the RemoveSpace function, if no unicode character is passed ('aa bb' for example), all is well. Now if I pass the text 'ab cd' then the function doesn't work as expected (I get ab??cd as the output).</p> <p>How can I account for possible unicode characters on a string? using Length(InStr) is obviously incorrect as well as Copy(InStr, I, 1).</p> <p>What's the best way of converting this code so that it accounts for unicode characters?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1477912/delphi-charset-detection-unisynedit-utf8decode-problem 1 Delphi, charset detection ([Uni]SynEdit) - Utf8Decode problem michal 2009-09-25T15:16:19Z 2009-09-25T20:20:44Z <p>I'm using Unicode SynEdit, which (in theory) has basic file/stream encoding detection. It worked fine until I tried opening the file which was generated by my PHP script. The file I'm talking about is detected by UniSynEdit as utf8 with no BOM. Unfortunately, it doesn't open - the loaded string is empty. I debugged it, and it seems that the problem is the function Utf8Decode, which fails for some reason and returns empty string. I've also checked the file with hex editor, and it's true: it has no BOM, all the normal characters are encoded using one byte, while some polish letters I had in the file (like "ł") are double-byte...</p> <p>What could be wrong, and how can I prevent this? I believe wrong encoding loaded is better than no file at all...</p> http://stackoverflow.com/questions/1452215/elegant-way-for-handling-this-string-issue-unicode-pansistring-issue 2 Elegant way for handling this string issue. (Unicode-PAnsiString issue) utku_karatas 2009-09-20T22:42:37Z 2009-09-22T04:13:13Z <p>Consider the following scenario:</p> <pre><code>type PStructureForSomeCDLL = ^TStructureForSomeCDLL; TStructureForSomeCDLL = record pName: PAnsiChar; end function FillStructureForDLL: PStructureForSomeDLL; begin New(Result); // Result.pName := PAnsiChar(SomeObject.SomeString); // Old D7 code working all right Result.pName := Utf8ToAnsi(UTF8Encode(SomeObject.SomeString)); // New problematic unicode version end; ...code to pass FillStructureForDLL to DLL... </code></pre> <p>The problem in unicode version is that the string conversion involved now returns a new string on stack and that's reclaimed at the end of the FillStructureForDLL call, leaving the DLL with corrupted data. In old D7 code, there were no intermediate conversion funcs and thus no problem.</p> <p>My current solution is a converter function like below, which is IMO too much of an hack. Is there a more elegant way of achieving the same result?</p> <pre><code>var gKeepStrings: array of AnsiString; { Convert the given Unicode value S to ANSI and increase the ref. count of it so that returned pointer stays valid } function ConvertToPAnsiChar(const S: string): PAnsiChar; var temp: AnsiString; begin SetLength(gKeepStrings, Length(gKeepStrings) + 1); temp := Utf8ToAnsi(UTF8Encode(S)); gKeepStrings[High(gKeepStrings)] := temp; // keeps the resulting pointer valid // by incresing the ref. count of temp. Result := PAnsiChar(temp); end; </code></pre> http://stackoverflow.com/questions/1450469/how-convert-null-terminated-string-to-an-ansistring 2 How convert null-terminated string to an AnsiString ? berocoder 2009-09-20T06:54:02Z 2009-09-21T07:19:57Z <p>I have some code that compiles fine with D7 but fails with D2010. Obviously it is an Unicode issue:</p> <p>The compile error is: E2251 Ambiguous overloaded call to 'StrPas'</p> <p>Here is the whole procedure:</p> <pre><code>procedure GetVersionInfo; type PLangCharSetInfo = ^TLangCharSetInfo; TLangCharSetInfo = record Lang: Word; CharSet: Word; end; var FileName: array [0..260] of Char; SubBlock: array [0..255] of Char; VerHandle: Cardinal; Size: Word; Buffer: Pointer; Data: Pointer; DataLen: LongWord; LangCharSetInfo: PLangCharSetInfo; LangCharSetString: string; begin LabelComments.Caption := 'No version information for this program is available!'; {Get size and allocate buffer for VerInfo} if GetModuleFileName(hInstance, FileName, SizeOf(FileName)) &gt; 0 then begin Size := GetFileVersionInfoSize(FileName, VerHandle); if Size &gt; 0 then begin GetMem(Buffer, Size); try if GetFileVersionInfo(FileName, VerHandle, Size, Buffer) then begin {Query first language and that language blocks version info} if VerQueryValue(Buffer, '\VarFileInfo\Translation', Pointer(LangCharSetInfo), DataLen) then begin LangCharSetString := IntToHex(LangCharSetInfo^.Lang, 4) + IntToHex(LangCharSetInfo^.CharSet, 4); if VerQueryValue(Buffer, StrPCopy(SubBlock, '\StringFileInfo\' + LangCharSetString + '\ProductName'), Data, DataLen) then begin LabelProductName.Caption := StrPas(Data); Caption := LabelProductName.Caption; end; if VerQueryValue(Buffer, StrPCopy(SubBlock, '\StringFileInfo\' + LangCharSetString + '\FileVersion'), Data, DataLen) then LabelVersion.Caption := StrPas(Data); if VerQueryValue(Buffer, StrPCopy(SubBlock, '\StringFileInfo\' + LangCharSetString + '\LegalCopyright'), Data, DataLen) then LabelCopyright.Caption := StrPas(Data); if VerQueryValue(Buffer, StrPCopy(SubBlock, '\StringFileInfo\' + LangCharSetString + '\Comments'), Data, DataLen) then LabelComments.Caption := StrPas(Data); end; end; finally FreeMem(Buffer, Size); end; end end; end; </code></pre> <p>The doc for StrPas says</p> <pre><code>function StrPas(const Str: PAnsiChar): AnsiString; overload; </code></pre> <p>This function is provided fasor backwards compatibility only. To convert a null-terminated string to an AnsiString or native Delphi language string, use a typecast or an signment. </p> <p>So the question is should I remove all calls to StrPas ? The only way I make this to compile is to do a hardcast to PAnsi char like:</p> <pre><code>LabelProductName.Caption := StrPas(PAnsiChar(Data)); </code></pre> http://stackoverflow.com/questions/1422546/delphi-2009-unicode-replacement-for-jvappstorage 2 Delphi < 2009, unicode replacement for JvAppStorage. michal 2009-09-14T16:15:25Z 2009-09-15T06:13:27Z <p>I'm looking for the best option to store my application settings. I decided to write own class that inherits from TPersistent which would store all the config options available. Currently I'm looking for the best way to save it - and I found JvAppStorage which looked very promising (as I'm using JVCL in my project anyway...) but it doesn't handle unicode (WideStrings) properly. For XML files it stores chars as entities, for ini file it seems to be stored ok, but in both cases loading strings replaces the text with lots of question marks... </p> <p>Is there any good replacement that handles Unicode as well?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1399395/how-do-the-new-string-types-work-in-delphi-2009-2010 4 How do the new string types work in Delphi 2009/2010? DR 2009-09-09T12:27:44Z 2009-09-11T06:36:46Z <p>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 work and how they should be used.</p> <p>The application fully supported Unicode using TntUnicodeControls and there are 3rd party DLLs which require strings in specific encodings, mostly UTF8 and UTF16, making the conversion task not as trivial as one would suspect.</p> <p>I especially have problems with the C DLL calls and choosing the right type. I also get the impression that there are many implicit string conversions happening, because one of the DLL seems to always receive UTF-8 encoded strings, no matter how the Delphi string is encoded.</p> <p>Can someone please provide a short overview about the new Delphi 2009 string types UnicodeString and RawByteString, perhaps some usage hints and possible pitfalls when converting a pre 2009 application?</p> http://stackoverflow.com/questions/1391051/delphi-7-xml-handling-with-unicode-support 0 Delphi 7, XML handling with Unicode support. michal 2009-09-07T21:41:29Z 2009-09-08T15:24:52Z <p>Hi, I'm developing in Delphi 7 (personal). I used to use JvSimpleXML for XML handling, but it doesn't seem to handle WideStrings (or does it?!). My whole project uses TntWide... &amp; SpTBXLib for interface so it does handle Unicode very well, I need now to store some settings in files ... So I'm looking for solution or (free) replacement of JvSimpleXML ... any ideas?</p> <p>Thanks in advance michal</p> http://stackoverflow.com/questions/1351302/string-losing-data-when-assigning-to-tstringlist 1 String losing data when assigning to TStringList Wizzard 2009-08-29T12:14:17Z 2009-08-31T09:14:15Z <p>Hi there.</p> <p>I have this method,</p> <pre><code>var s : TStringList; fVar : string; begin s := TStringList.Create; fVar := ZCompressStr('text'); ShowMessage( IntToStr(length(fVar) * SizeOf(Char)) ); //24 s.text := fVar; ShowMessage( IntToStr( length(s.text) * SizeOf(Char)) ); //18 end; </code></pre> <p>The ZCompressStr is from <a href="http://www.base2ti.com/zlib.htm" rel="nofollow">http://www.base2ti.com/zlib.htm</a> with Line 121 changed from {$ifndef UNICODE} to {$ifdef UNICODE} to make it compile.</p> <p>Anyway, I can call ZDecompressStr if I use the fVar variable, however once I move it to a stringlist or to a memo it seems to loose those 6 bytes of data.... If I try and use ZDecompressStr on the s.text var it fails with buffer error.</p> http://stackoverflow.com/questions/1333516/delphi-2006-system-delete-for-widestrings 1 Delphi 2006 system.delete for widestrings? Bartosz Radaczyński 2009-08-26T09:41:48Z 2009-08-26T15:07:07Z <p>Hi all,</p> <p>is there a counterpart of the Delete procedure that could be used for widestrings? Or should I just use copy and concatenate the resulting WideStrings?</p> http://stackoverflow.com/questions/1270426/unicode-filenames-with-zeos-sqlite 0 Unicode filenames with zeos / sqlite Tobias Langner 2009-08-13T06:56:30Z 2009-08-13T08:18:45Z <p>Hi,</p> <p>I need to save data in sqlite databases with user-chosen filenames. This includes unicode filenames. Is there a way to specify this in the Zeos components in Delphi?</p> http://stackoverflow.com/questions/1181756/how-to-make-pbears-thtmlviewer-load-show-a-unicode-html-file 1 How to make PBear's THtmlViewer load & show a unicode HTML file? robsoft 2009-07-25T09:43:41Z 2009-08-11T06:15:59Z <p>Mercifully brief for once, from me - hopefully the title says it all. I have some unicode .html files that I want to display inside a THtmlViewer component, in Delphi. </p> <p>I can't seem to persuade the code to work just doing '.LoadFromFile' - do I firstly need to load the unicode file into a stream and then somehow convert it? </p> <p>Delphi 2007, THtmlViewer v9.45</p> <p>I've not done anything with unicode files, or THtmlViewer, before so apologies in advance if this is a really dumb question!</p> http://stackoverflow.com/questions/1201701/delphi-2009-unicode-ansi-problem 1 delphi 2009 unicode + ansi problem Francis Lee 2009-07-29T17:04:35Z 2009-07-30T12:06:21Z <p>Hello folks,</p> <p>I'm porting an isapi (pageproducers) application from delphi 7 to delphi 2009, the pages are based on html files in UTF8.</p> <p>Everything goes well except when Onhtmltag is fired and I replace a transparent tag with any value with special characters like accented characters (áé...) Those characters are replaced in the output with an � character.</p> <p>What's wrong?</p> http://stackoverflow.com/questions/1095014/is-there-a-quick-and-dirty-way-to-cast-pansichar-to-pchar-in-delphi-2009 0 Is there a quick and dirty way to Cast PansiChar to Pchar in Delphi 2009 Robert McCabe 2009-07-07T21:35:20Z 2009-07-22T15:19:17Z <p>I have a very large number of app to convert to Delphi 2009 and there are a number of external interfaces that return pAnsiChars. Does anyone have a quick and simple way to cast these back to pChars? There is a lot on string to pAnsiChar, but much I can find on the other way around.</p>