1
vote
Drag/Drop inside an Application AND to another Application
If you want both VCL-style and Windows-style drag and drop, then use the Windows-style one for everything, including drag-and-drop within your own application.
…
1
vote
How can I set and restore FPU CTRL registers?
uses
SysUtils;
var
SavedCW: Word;
begin
SavedCW := Get8087CW;
try
Set8087CW($027f);
// Call .NET code here
finally
Set8087CW(SavedCW);
…
2
votes
How to reuse a (Delphi) OLE server with a second client?
In the client, use
ConnectKind := ckRunningOrNew
and an existing server should be used instead of starting a new one.
…
7
votes
How do I turn specific Delphi warnings and hints off?
Why don't you instead change the code so the hint goes away? Those hints are usually pretty accurate. And if you really feel that the line of code (I'm guessing some variable initialization or ot …
4
votes
What Happens to an Object That Falls Out of Scope in Delphi?
It becomes leaked memory.
You should typically surround such allocations thus:
locallist := TStringList.Create;
try
// work with locallist here
finally
locallist …
4
votes
Newly created modal window loses focus and become inacessible in Windows Vista
Take a look at the PopupParent property. You may want to set it explicitly for your modal form prior to the ShowModal call. When PopupParent is nil (default) VCL behaves a bit differently dependi …
4
votes
Delphi custom message handlers
Aside from the message name in the other answer, you are posting a message to Self.Handle while Self is going away. You probably meant to post to a different handle (the window that launched the m …
9
votes
How to group constant strings together in Delphi
See http://edn.embarcadero.com/article/34324 ("New Delphi language features since Delphi 7".
A class constant would do …
2
votes
Prevent Delphi COM component from showing MessageBox()
What does the messagebox say? I'm assuming it's an exception. Why don't you put an exception handler around the code in the COM component, and log the exception in a different way? (E.g., using t …
1
vote
ColorToDec function (clRed = $0000FF)?
I've always been a fan of "Format" for such uses:
function ColorToHex(color: TColor): String;
begin
Result := Format('$%.6x', [integer(aColor)]);
end;
…
2
votes
What can cause System.Move to occasionaly give wrong results?
Careful - you're assuming that a Char = 1 byte. That was fine before D2009, but in D2009 and D2010 a char is 2 bytes. Move always works with bytes. Is it possible these problems happened after y …
