DelphiDelphiVCLPythonPython GUIWindows

What Is The DelphiVCL.Application.CreateForm Method?

What Is The DelphiVCLApplicationCreateForm Method

When you develop windows software use CreateForm method or DelphiVCL.Application.CreateForm to create 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.

Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.CreateForm using dir() command:

See the responses in our Windows command prompt:

What Is The DelphiVCLApplicationCreateForm Method The Results of the Dir function

You can also read short information about the DelphiVCL.Application.CreateForm using the print() command:

See the responses in our Windows command prompt:

What Is The DelphiVCLApplicationCreateForm Method The responses shown in a command window

 

Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.

Related posts
AndroidCodeDelphiLearn PythonProjectsPythonPython GUI

How to Create a BMI App With Delphi Ecosystem And Python

AndroidCodeDelphiDelphiFMXLearn PythonProjectsPythonPython GUI

How to Create a Stopwatch/Timer Android App With Delphi For Python?

AndroidCodeDelphiDelphiFMXLearn PythonProjectsPythonPython GUI

How to Create a Unit Converter Android App Using Python GUI

AndroidDelphiDelphiFMXLearn PythonPythonPython GUI

How To Create A Python Quiz Application With DelphiFMX?

Leave a Reply

Your email address will not be published. Required fields are marked *