Delphi Creating A New Application With DelphiVCL.Application.Create

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
Creating A New Application With DelphiVCL.Application.Create
By Muhammad Azizul Hakim July 24, 2021

The Create method of the DelphiVCL.Application object, DelphiVCL.Application.Create, creates a new VCL-based application.

Do not call Create directly. Each GUI application automatically creates an instance of an application object.

For DelphiVCL.Application or TApplication, the Create method initializes default values for some of its properties. It also prepares the application to run by setting up objects such as hint windows, the application icon, the main window handle, the instance handle, lists for managing child windows of the main window (form), and so on.

Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.Create using dir() command:
Python:
import DelphiVCL
 
dir(DelphiVCL.Application.Create)
See the responses in our Windows command prompt:
1627395524597.png
You can also read short information about the DelphiVCL.Application.Create using the print() command:
Python:
print(DelphiVCL.Application.Create)
print(DelphiVCL.Application.Create.__doc__)
See the responses in our Windows command prompt:
1627395552997.png