Vcl.Forms.TApplication.Run

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Run;

C++

void __fastcall Run();

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TApplication

Description

Executes the application.

Do not call Run. When creating a new project, The IDE automatically creates a main program block in the project file that calls the Run method. When the application is executed, the application's Run method is called.

Run contains the application's main message loop. The call to Run does not return until the application's message loop terminates.

See Also

Code Examples