Top "Delphi-2009" questions

Delphi 2009 is a reference to a specific version of Delphi.

Conversion of Delphi code to Java

Does a parser exist for Delphi which can be used to convert the Delphi code into Java code automatically?

java delphi delphi-2009 code-conversion
Delphi 2009 - create a TPanel at runtime and change its color

got a strange problem: I create a TPanele at runtime and change its color - however, the color is still …

delphi delphi-2009
Copy const array to dynamic array in Delphi

I have a fixed constant array constAry1: array [1..10] of byte = (1,2,3,4,5,6,7,8,9,10); and a dynamic array dynAry1: array of byte; What is …

delphi arrays delphi-2009 constants
How to cast a Interface to a Object in Delphi

In delphi 2009 I have a reference to a IInterface which I want to cast to the underlying TObject Using TObject(…

delphi interface casting delphi-2009 pascal
What is TMonitor in Delphi System unit good for?

After reading the articles "Simmering Unicode, bring DPL to a boil" and "Simmering Unicode, bring DPL to a boil (Part 2)" …

delphi delphi-2010 delphi-2009 delphi-xe tmonitor
Best practice: Keep TCP/IP connection open or close it after each transfer?

My Server-App uses a TIdTCPServer, several Client apps use TIdTCPClients to connect to the server (all computers are in the …

delphi tcp delphi-2009 indy indy10
Hide the Main Form in a Delphi 2009 Application

The following code works fine in Delphi 7. However, in Delphi 2009 the form does remain hidden but the button on the …

delphi delphi-2009 vcl
How to achieve smaller size of the executable?

Very recently I have come back to Delphi after a long pause and written a rather straightforward utility app my …

delphi delphi-2009 compilation executable filesize
Delphi Dynamic Menu Items

I have a popup menu that has a few items in it. Option 1 - Sub1 - Sub2 Option 2 - Sub1 …

delphi menu delphi-2009 popupmenu
Faster DirectoryExists function?

I use DirectoryExists (const PathName : String); to check if a directory is reachable from a computer or not. But if …

delphi networking delphi-2009