2
votes
2answers
230 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
220 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
143 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
3answers
209 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
2answers
181 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
200 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
202 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
289 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 …
2
votes
3answers
198 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 …
0
votes
4answers
661 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, …
1
vote
1answer
279 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 …
2
votes
4answers
175 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;
…
2
votes
4answers
525 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:
…
3
votes
3answers
465 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], …
2
votes
3answers
142 views
Delphi < 2009, unicode replacement for JvAppStorage.
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 …
