Decipher the DelphiVCL.Application
By Muhammad Azizul Hakim April 9, 2021
DelphiVCL.Application is the type used for a GUI windowed application. Application encapsulates a windowed application. The methods and properties introduced in the Application reflect the fundamentals established in the Windows operating system to create, run, sustain, and destroy an application.
Application thereby simplifies the interface between the developer and the Windows environment. For this purpose, the Application encapsulates behavior for:
Application does not appear on the Component palette, nor is it available in the form designer to visually manipulate; so it has no published properties.
We can browse all the properties, methods, and built-in properties of the DelphiVCL.Application in Python using dir() command:
See the responses in command prompt:
Let’s create a Python main function that can run and close an application window:
Для просмотра ссылки Войди или Зарегистрируйся
By Muhammad Azizul Hakim April 9, 2021
DelphiVCL.Application is the type used for a GUI windowed application. Application encapsulates a windowed application. The methods and properties introduced in the Application reflect the fundamentals established in the Windows operating system to create, run, sustain, and destroy an application.
Application thereby simplifies the interface between the developer and the Windows environment. For this purpose, the Application encapsulates behavior for:
- Windows message processing
- Context-sensitive online help
- Menu accelerator and key processing
- Exception handling
- Managing the fundamental parts defined by the Windows operating system for an application, such as MainWindow, WindowClass, and so on
Application does not appear on the Component palette, nor is it available in the form designer to visually manipulate; so it has no published properties.
We can browse all the properties, methods, and built-in properties of the DelphiVCL.Application in Python using dir() command:
Python:
import DelphiVCL
dir(DelphiVCL.Application)
Let’s create a Python main function that can run and close an application window:
Python:
def main():
Application.Initialize()
Application.Title = "MyDelphiApp"
f = MainForm(Application)
f.Show()
FreeConsole()
Application.Run()
Application.Destroy()
main()