Building a VCL Forms Application
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
- Choose File > New > Other > Delphi Projects or C++Builder Projects and double-click the VCL Forms Application icon.The VCL Forms Designer is displayed.
- From the Tool Palette, place components onto the form to create the user interface.
- Write the code for the controls.
To associate code with a control
- 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.
- Code your application logic.
- Save and compile the application.