3
votes
Unicode Console Application in Delphi 2009
Writeln in Delphi 2009 still uses ANSI (see System TTextRec) but you can use UTF8Encode and change the console's output code page to UTF8 by calling SetConsoleOutputCP(CP_UTF8). You will also need …
4
votes
DoubleBuffered property beeing added in the dfm in Delphi 2009 does not exist in Delphi 2007
DoubleBuffered has been in TWinControl for some time now. The difference in Delphi 2009 is that it's published now.
If you can live with only ignoring the errors (and not making the properties work …
3
votes
Hooking a Stacktrace in Delphi 2009
To me this looks like a framework where you can plug in your own stack tracing. I guess this might be used internally in the IDE with JCLDebug. Perhaps it's intended for users to be able to supply …
0
votes
Delphi 2009 Application using Large Icons for Vista
I can only embed the normal 32x32 icon
in my application
From my experience, Delphi 2009 lets you use any icon. I've used extra large Vista icons too, and it …
2
votes
Compare Function and Multithreading
Perhaps you could use a threadvar (thread local variable) to hold a reference to your instance which could then be accessed from the CompareKeys function (assign the threadvar just bef …
2
votes
Delphi: Required package not found
If this happens when the IDE is trying to load a package: your package output directory (where the *.bpl files go) has to be on your system's PATH environment variable. Packages are statically link …
2
votes
COM server AnsiString parameters in Delphi 2009
You can modify the generated code yourself. The easiest way is probably to redeclare PChar:
type
PChar = PAnsiChar;
on top of the generated unit.
Or just …
2
votes
How can I create an Delphi object from a class reference and ensure constructor execution?
Your code slightly modified:
type
TMyObject = class(TObject)
MyStrings: TStrings;
constructor Create; virtual;
end;
TMyClass = class of TMyObject;
constructor TMyObje …
10
votes
Is there a Delphi library which returns all effective source paths for a project?
You can use OpenTools API to get the active project's search path (merged from active configuration and option set) and the IDE's global library path. Here is a unit from my quick test design packa …
6
votes
Copy const array to dynamic array in Delphi
function CopyByteArray(const C: array of Byte): TByteDynArray;
begin
SetLength(Result, Length(C));
Move(C[Low(C)], Result[0], Length(C));
end;
procedure TFormMain.Button1Click(Sender: …
1
vote
Setting Label and StaticText Color property problem - Delphi 2009
Set Transparent to False. :-)
Edit: assuming it's a TLabel, as shown in the screenshot.
…
2
votes
Process for localization of Delphi 2009 app by volunteer translators?
As you have mentioned, D2009 comes with localization tools. Why not simply using them? AFAIK you can distribute the external translation manager (etm.exe). Do you need anything else?
Also, …
4
votes
3
votes
TMenuItem-Shortcuts overwrite Shortcuts from Controls (TMemo)
The VCL is designed to give menu item shortcuts precedence. You can, however, write your item click handler (or action execute handler) to do some special handling when ActiveControl is TCustomEdit …
14
votes
How do I make a PNG resource?
Example text file (named myres.rc):
MYPNG RCDATA mypng.png
Added to project:
{$R 'myres.res' 'myres.rc'}
Example of loading at ru …
