Developing a Windows Application

From RAD Studio
Jump to: navigation, search

Go Up to How To Build VCL Forms Applications

The following procedure illustrates the essential steps for building a Windows application.

To create a Windows project

  1. Select File > New > VCL Forms Application - Delphi. The Windows Designer displays.
  2. If necessary, select Design view.
  3. From the Tool Palette, drag components onto the designer to create the user interface.
  4. Associate logic with the controls.

To associate code with a control

  1. In the Designer, double-click the component to which you want to apply logic.The Code Editor appears, cursor in place between the reserved words begin and end in the event handler.
  2. Code your application logic.
  3. Save and compile the application.

See Also