DelphiDelphiVCLPythonPython GUIWindows

Using DelphiVCL.PageControl to Create a Multiple Page

DelphiVCL.PageControl is a set of pages used to make a multiple page dialog box. We can use PageControl to create a multiple page dialog or tabbed notebook. PageControl displays multiple overlapping pages that are TabSheet objects (we will discuss TabSheet in another article). The user selects a page by clicking the page’s tab that appears at the top of the control. You…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Object or TObject

DelphiVCL.Object or TObject is the ultimate ancestor of all objects and components. DelphiVCL.Object encapsulates fundamental behavior common to objects by introducing methods that: Create, maintain, and destroy instances of the object by allocating, initializing, and freeing required memory. Respond when object instances are created or destroyed. Return class-type and instance…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Create a Specific Component using delphivcl.CreateComponent

delphivcl.CreateComponent is a function to create a specified component. We call CreateComponent to create an instance of ComponentClass at the position specified by the Left and Top parameters with the size specified by the Width and Height parameters. The new component will be a child of the component specified by the Parent parameter. We can browse all the properties, methods, and…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Image

DelphiVCL.Image or TImage displays a graphical image. Use TImage to display a graphical image on a form. Use the TPicture object in the Picture property to specify the actual bitmap, con, metafile, or other graphic object displayed by TImage. Properties and methods of TPicture can be used for such things as loading an image from a file, clearing the image in the TImage, and assigning an…
Read more