2
votes
5answers
568 views
“Left side cannot be assigned to” for record type properties in Delphi
Hi,
I'm curious to know why Delphi treats record type properties as read only:
TRec = record
A : integer;
B : string;
end;
TForm1 = class(TForm)
private
…
4
votes
2answers
270 views
Problem with setting Browsing Path in Delphi option page
Hi,
I have a problem with setting Browsing Path in Delphi 2009:
When I install a new component, I add DCU path to Delphi's Library Path, and source path to Delphi's Browsing Path. T …
2
votes
5answers
465 views
Registering a custom Frame
Hi,
In Delphi 2009, In one of my projects, I have a custom frame with some controls on it which I want to use as the base class for some other controls. I want to register this frame as an …
2
votes
How do I start with working Sub-Version + Delphi?
SVN is only the backbone of the SCM,
no front-end?
Basically, SVN is a console application. If you don't like to type all the commands in console, use a SVN f …
1
vote
Is there a way to see if a character is using 1 or 2 bytes in Delphi 2009?
You can use StringElementSize function to find out if a string is Unicode or ANSI.
To check if a character is ANSI, use TCharacter.IsAnsi class function in Chara …
2
votes
How do I compress multiple files into a single archive with Delphi
KaZip is an open-source ZIP archiver. Here is its description:
KAZIP …
1
vote
Can Delphi 2009 build web service that returns a DataSet?
Yes, it is possible to do so; you can do it by using Delphi's DataSnap with SoapConnection.
DataSnap is Delphi's multi-tier solution. In Delphi 2009 it saw a major update, and named DataSnap 2009, …
0
votes
Finding a Memory Bubble
As Lars Truijens mentioned, AQTime provides a live memory consumption graph, so in runtime, you can see what objects are using more memory whenever you refresh data.
…
0
votes
Can Delphi 2009 build web service that returns a DataSet?
As far as I know, .Net and Java clients can access DataSnap 2009 server too.
Old DataSnap doesn't use COM for SoapConnection, but COM is used for other kinds of connections (e.g. socket con …
2
votes
How do I get Delphi 2009s (Refactor) Extract Interface to work?
I'm using Delphi 2009 Version 12.0.3210.17555 (Update 1 and 2 installed), and I checked the feature on your class...
As long as I had only your class interface, and method were not implemen …
6
votes
Why does StrToInt(’X5’) returns 5 in Delphi?
In Delphi, hexadecimal values are marked with $ prefix:
a := $10; // => a = 16
But since in some other languages (e.g. C) X is used for marking hexadecimal val …
4
votes
Datagrid export to pdf
Well, data being shown in a DBGrid is provided by the dataset attached to that dbgrid, so exporting data in DBGrid to PDF means exporting data in your dataset to PDF.
The easiest option is …
0
votes
Where to put documenting comments?
I add a one-line summary comment to the interface section, and write the full-detailed comments in the implementation section.
BTW, I use Doc-O-Matic, and it works fine with comments in the …
0
votes
Delphi 2007 Browse path / click-though issue
You shouldn't need Source path in your Library path. Lib6 should be added to Library Path, and Source to Browsing Path.
If you do so, and it still doesn't work, then you have a similar prob …
0
votes
What is a good, free solution for Richtext editor and convertion to HTML?
You'd better take a look at TRichEditWB component in EmbeddedWeb component pack. The whole pack is open-source:
ht …
