Building a VCL Forms Application

From RAD Studio
Jump to: navigation, search

Go Up to How To Build VCL Forms Applications


The following procedure illustrates the essential steps to building a VCL Forms application using RAD Studio.

To create a VCL Form

  1. Choose File > New > Other > Delphi Projects or C++Builder Projects and double-click the VCL Forms Application icon.The VCL Forms Designer is displayed.
  2. From the Tool Palette, place components onto the form to create the user interface.
  3. Write the code for the controls.

To associate code with a control

  1. Double-click the component on the form to which you want to apply logic. The Code Editor displays, cursor in place within the event handler block.
  2. Code your application logic.
  3. Save and compile the application.

See Also