Tagged Questions

3
votes
2answers
169 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 …
1
vote
3answers
109 views

convert function to delphi 2010 (unicode)

How to convert this function to Delphi 2010 (Unicode)? function TForm1.GetTarget(const LinkFileName:String):String; var //Link : String; psl : IShellLink; ppf : IPersistFile; WidePath …
2
votes
2answers
173 views

Is There An Efficient Whole Word Search Function in Delphi?

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 …
2
votes
3answers
191 views

What is a good library for creating PDFs in Delphi 2010?

What is a good library for creating PDFs in Delphi 2010? 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) …
2
votes
5answers
178 views

Delphi 2010 or 2007 for upgrading Delphi 3 project?

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 here and here). I was …
0
votes
2answers
157 views

Delphi 7 Personal, MySQL using libmysql.dll + UTF8

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 …
2
votes
5answers
283 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 …
3
votes
3answers
416 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], …
0
votes
4answers
548 views

convert function to delphi 2009/2010 (unicode)

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. There are still some things I haven't understood, …
2
votes
3answers
188 views

How can I work with Chinese characters from a database?

I am facing problem capturing Chinese characters in a dataset. In Delphi 2010 I have tried two kinds of components: Delphi default Developer Express components As result, those components that do …
3
votes
4answers
261 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 …
2
votes
4answers
463 views

How convert null-terminated string to an AnsiString ?

I have some code that compiles fine with D7 but fails with D2010. Obviously it is an Unicode issue: The compile error is: E2251 Ambiguous overloaded call to 'StrPas' Here is the whole procedure: …
1
vote
1answer
234 views

Delphi, charset detection ([Uni]SynEdit) - Utf8Decode problem

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 …
4
votes
4answers
413 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 …
2
votes
4answers
173 views

Elegant way for handling this string issue. (Unicode-PAnsiString issue)

Consider the following scenario: type PStructureForSomeCDLL = ^TStructureForSomeCDLL; TStructureForSomeCDLL = record pName: PAnsiChar; end function FillStructureForDLL: PStructureForSomeDLL; …

1 2 3 4 next
15 30 50 per page