1
vote
2answers
210 views
How to get the property type name for custom properties?
In Delphi 2007, I added a new string type to my project:
type
String40 = string;
This property is used in a class:
type
TPerson = class
priva …
0
votes
Delphi Component Serialization
Formats will defintely change, as vendors will add features to their components. Serialization simply loops over all published properties and saves them to a stream. When they are read back, each o …
0
votes
What is the best or cheapest library for creating PDF files in Delphi?
I think Rave Reports is included with most Delphi versions. It supports writing reports to PDF files. Since you already paid for Delphi, this would probably be the cheapest :-)
…
0
votes
Delphi: Paradox DB Field Name Issue (Spaces in field name)
I think you must use [ and ] instead of ":
SELECT customers.[Street 1] FROM customers WHERE ...
…
1
vote
Is there a DBGrid component that can handle large datasets fast?
I think the DevExpress Quantumgrid supports this very good.
…
2
votes
Using KeyDown event in the parent window of a Delphi Mdi Application
I had the exact same problem this week! I fixed it by creating an action in the ActionManager on the mainform. This action opens the help file and has the F1-key set as shortcut. It also works for …
1
vote
EXE, Resource and Code Reduction
I always use UPX to compress exe files. It works perfectly, often resulting in a factor 2 compression. And, of course, disable all the debug …
2
votes
Creating a Database using DBExpress in Delphi?
I got a good tip from a collegue that created some code for the Freepascal project. It doesn't use DB express, but according to him it is the only way to create a database with code. This code is b …
1
vote
Form doesn’t get updated
Are you sure the TForm1 class form you are working with is instantiated as Form1?
…
-1
votes
TClientDataset — XML mapping.
Can't you just access the ClientDataSet.XMLData property and save that to a text file?
…
1
vote
Search Words in pdf files
I'm just working on a project that does this. The method I use is to convert the PDF file to plain text (with pdftotext.exe) and create an index on the resulting text. We do the same with word and …
2
votes
Where can I find *newer* looking glyphs for TBitBtn?
We have recently bought the complete icon set from Icon Experience to use in all our applications. Before that, I have spend a lot of tim …
1
vote
Delphi IDE treating TFrame as if it were a Form
I have encountered the same problem. The following steps solved the problem for us, it might also work for you:
in the IDE: close all forms that use the frame
open the frame, …
4
votes
Delphi: Open a file from another computer
when you copy this exact same string in windows explorer, is the file opened?
Otherwise it might be a rights problem, as suggested by the error.
…
0
votes
editor component like RichEdit that supports embedding photos?
I think it should work when you insert bmp files. Other image files are not supported. Maybe you can convert your images to a bitmap first?
…
