Vcl.Forms.TApplication.CreateForm

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure CreateForm(InstanceClass: TComponentClass; var Reference);

C++

void __fastcall CreateForm(System::Classes::TComponentClass InstanceClass, void *Reference);

Properties

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

Description

Creates a new form.

Call CreateForm to dynamically create a form at runtime. Developers do not need to add code for creating most forms, because typically one or more calls to CreateForm are added automatically to the project's source when using the form designer.

CreateForm creates a new form of the type specified by the FormClass parameter and assigns it to the variable given by the Reference parameter. The owner of the new form is the Application object.

Note: By default, the form created by the first call to CreateForm in a project becomes the application's main form.

See Also

Code Examples