1
vote
4answers
423 views
Looking for a PDF file parser.
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 …
3
votes
2answers
167 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
108 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 …
4
votes
4answers
2k views
Converting TMemoryStream to String in Delphi 2009
We had the following code previous to Delphi 2009:
function MemoryStreamToString(M: TMemoryStream): String;
var
NewCapacity: Longint;
begin
if (M.Size = 0) or (M.Memory = nil) then
Result:= …
5
votes
4answers
494 views
Most Efficient Unicode Hash Function for Delphi 2009
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.
I originally started with …
3
votes
3answers
413 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
920 views
Displaying unicode text in Rave Reports on Delphi 2009
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 …
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)
…
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
2answers
172 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 …
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
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 …
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 …
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
6answers
2k views
Handling a Unicode String in Delphi Versions <= 2007
Background: 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 …
