3
votes
6answers
2k views
Delphi 2009 + Unicode + Char-size
Hello!
I just got Delphi 2009 and have previously read some articles about modifications that might be necessary because of the switch to Unicode strings.
Mostly, it is mentioned that sizeof(char) …
2
votes
3answers
632 views
Drag/Drop inside an Application AND to another Application
I have a ListView containing file names. These file names need to be draggable to a TreeView, which is a drag/drop inside the application and works with the built in drag/drop support of Delphi - n …
6
votes
5answers
427 views
Form.Release + NIL
Hello,
if Form.Release is called after using the form, it will free all related memory but not set the form variable to nil.
if not assigned (Form1) then
begin
Applica …
7
votes
5answers
1k views
TStringList vs. TList<string>
Hello,
what is the difference in using a standard
type sl: TStringList
compared to using a generic TList
type sl: TList<string>
…
4
votes
4answers
761 views
Delphi file types
I am looking for a list of all file types that can be associated to a Delphi project (all versions of Delphi), more specifically all file types that should be under source control.
…
0
votes
6answers
439 views
Delphi History - Source Control
After reading some posts here on the advantages of using source control for a single developer, it seems to me that the main advantage is that I will have backups of all changes to the source files …
1
vote
4answers
203 views
In what order does Class Completion put its results?
Example: I create a new unit, declare a class with several methods like constructor, destructor, method1, method2, method3 in that order and then hit Ctrl-Shift-C.
The IDE creates all the method bo …
0
votes
2answers
186 views
TStringList as field of object does not work
uses Classes, SysUtils;
type
TMyObject = class (TObject)
private
Fsl: TStringList;
public
constructor Create;
destructor Destroy; override;
end;
implementation
constr …
1
vote
4answers
246 views
What is the best way to call a procedure “delayed”?
There are two procedures, A1 and A2, which both call function B in their code:
function B: boolean;
begin
// do other stuff
end;
procedure A1;
begin
// do stuff
if b then
…
2
votes
5answers
259 views
Why does execution jump to the end of a proc after an exception?
When an unhandled exception happens while debugging some code in any procedure/function/method, the debugger stops there and shows the message.
If I now continue debugging step by step, th …
2
votes
3answers
332 views
Compiler Hint: “Inline function ‘…’ has not been expanded…”
In a unit I use the function DeleteFile and the compiler outputs a hint:
"H2443 Inline function 'DeleteFile' has not been expanded because unit 'Windows' is not specified in …
2
votes
2answers
191 views
Problem with updating blob, if blob contains specific data
I have binary data that needs to be stored in a BLOB field in a SQL-database.
In case of an UPDATE (storing into the database), the binary data comes as a string (BDS2006, no unicode).
When the BLO …
8
votes
Debugging problems with ‘WITH’ statement in Delphi 2006
The Debugger cannot make the connection between the variable shown in the source-code that you want to examine and the related with-statement, when you mouse-over the variable.
You will have to exa …
24
votes
Why Weren’t You at CodeRage III?
I think a lot of interested people couldn't spare the time to attend during working hours. The replays are what they will look for and I am sure there will be many times more downloads in the days …
1
vote
