Seeing many friends asking questions about the background picture As the Delphi Form does not bring background properties, there is a little tip of the background image:
Add an image component on the form, set its Picture property for the picture you want, (must be a BMP picture), and set it to false;
Add the following code in FormCreate, and FormPaint events:
Form1.brush.canvas.bitmap: = image1.brush.bitmap;
This way, you can add your picture to the form.
Take a look at my programs, it is this: