2
votes
2answers
231 views
Is an update to D2010 really meaningful
I am trying to migrate my own projects to delphi 2010. But it seems to be very difficult.
I use TntControls for old projects. If I remove this library, some runtime functions must be re-implemented …
4
votes
2answers
224 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
…
2
votes
4answers
239 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)
…
1
vote
3answers
153 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
182 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
5answers
205 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
212 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
294 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
480 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
684 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
203 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
278 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
540 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
289 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
476 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 …
