DelphiDelphiVCLPythonPython GUIWindows

Learn What You Need To Know About DelphiVCL.Application.NonBiDiKeyboard Property

NonBiDiKeyboard or DelphiVCL.Application.NonBiDiKeyboard property specifies the name of the keyboard map that should be used unless text reads from right to left. Use NonBiDiKeyboard to specify the keyboard map that should be used. This name is a string composed of the hexadecimal value of the language identifier (low word) and a device identifier (high word). For example, U.S. English has…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About The Application's InitInstance Method

In this post, you’ll learn more about InitInstance or DelphiVCL.Application.InitInstance method is used to initialize a newly allocated object instance to all zeros and initialize the instance’s virtual method table pointer. Learning more about InitInstance will allow you to easily build GUI’s with Python Windows GUI Builder. How to use the InitInstance Method properly? You…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Is The HintShortPause Property in DelphiVCL.Application?

In this post, you’ll learn more about HintShortPause or DelphiVCL.Application.HintShortPause property is used to specify the time period to wait before bringing up a Hint if another Hint has already been shown. Use HintShortPause to reduce the flicker when moving the mouse quickly over a set of buttons that all have Help Hints on. Specify a HintShortPause value in milliseconds. The default…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Is The InheritsFrom Method?

In this post, you’ll learn more about InheritsFrom or DelphiVCL.Application.InheritsFrom method determines the relationship between two object types. Use InheritsFrom to determine whether a particular class type or object is an instance of a class or one of its descendants. InheritsFrom returns True if the object type specified in the aClass parameter is an ancestor of the object type or…
Read more