2
votes
3answers
142 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/ …
2
votes
2answers
139 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 …
2
votes
5answers
140 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 …
0
votes
2answers
102 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 …
2
votes
5answers
264 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 cod …
2
votes
3answers
170 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, thos …
0
votes
4answers
370 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 h …
3
votes
4answers
238 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 abou …
2
votes
4answers
360 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 …
1
vote
1answer
178 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 …
2
votes
4answers
164 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: PStru …
3
votes
1answer
306 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(Sour …
4
votes
4answers
345 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 t …
2
votes
3answers
129 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. Cu …
0
votes
5answers
316 views
Delphi 7, XML handling with Unicode support.
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... & …
