python

  1. FireWind

    Delphi This Is The DelphiVCL.Application.HelpSystem Property

    This Is The DelphiVCL.Application.HelpSystem Property By Muhammad Azizul Hakim August 25, 2021 HelpSystem or DelphiVCL.Application.HelpSystem property provides access to the interface for working with the Help system. TApplication uses IHelpSystem to interact with a Help system manager. This...
  2. FireWind

    Delphi How To Understand DelphiVCL.Application.HelpShowTableOfContents

    How To Understand DelphiVCL.Application.HelpShowTableOfContents By Muhammad Azizul Hakim August 24, 2021 Use the HelpShowTableOfContents method or DelphiVCL.Application.HelpShowTableOfContents to show the table of contents within the Help system. Use HelpShowTableOfContents to bring up the...
  3. FireWind

    Delphi What does HintHidePause in DelphiVCL.Application do?

    What does HintHidePause in DelphiVCL.Application do? By Muhammad Azizul Hakim August 20, 2021 HintHidePause or DelphiVCL.Application.HintHidePause property is used to specify the time interval to wait before hiding the Help Hint if the mouse has not moved from the control or menu item. Use...
  4. FireWind

    Delphi What Is The FreeNotification Method In DelphiVCL?

    What Is The FreeNotification Method In DelphiVCL? By Muhammad Azizul Hakim August 12, 2021 Use the FreeNotification method or DelphiVCL.Application.FreeNotification to ensure that AComponent is notified that the component is going to be destroyed. Use FreeNotification to register AComponent...
  5. FireWind

    Delphi What Does HintColor In DelphiVCL.Application Do?

    What Does HintColor In DelphiVCL.Application Do? By Muhammad Azizul Hakim August 19, 2021 HintColor or DelphiVCL.Application.HintColor property determines the color of the hint boxes for the Help Hints for the application. Use HintColor to specify the hint box color. A default color value of...
  6. FireWind

    Delphi This Is The FreeOnRelease Method Of DelphiVCL.Application

    This Is The FreeOnRelease Method Of DelphiVCL.Application By Muhammad Azizul Hakim August 13, 2021 FreeOnRelease method or DelphiVCL.Application.FreeOnRelease is used to free the interface reference for components that were created from COM classes. FreeOnRelease is called when an interface...
  7. FireWind

    Delphi What Is The FreeNotification Method In DelphiVCL?

    What Is The FreeNotification Method In DelphiVCL? By Muhammad Azizul Hakim August 12, 2021 Use the FreeNotification method or DelphiVCL.Application.FreeNotification to ensure that AComponent is notified that the component is going to be destroyed. Use FreeNotification to register AComponent...
  8. FireWind

    Delphi What You Need To Know About The GetInterfaceEntry Method

    What You Need To Know About The GetInterfaceEntry Method By Muhammad Azizul Hakim August 10, 2021 Use the GetInterfaceEntry method or DelphiVCL.Application.GetInterfaceEntry to return the entry for a specific interface implemented in a class. GetInterfaceEntry returns the class entry for the...
  9. FireWind

    Delphi How To Use The GetHashCode Method in DelphiVCL.Application

    How To Use The GetHashCode Method in DelphiVCL.Application By Muhammad Azizul Hakim August 9, 2021 The GetHashCode method or DelphiVCL.Application.GetHashCode is used to return an integer containing the hash code. By default, calling GetHashCode on an object returns an integer representing...
  10. FireWind

    Delphi What is DelphiVCL.Application.CreateHandle?

    What is DelphiVCL.Application.CreateHandle? By Muhammad Azizul Hakim July 27, 2021 We can use the CreateHandle property or DelphiVCL.Application.CreateHandle to generate a main window for the application if it does not already have one. Do not call CreateHandle directly. In EXEs, the...
  11. FireWind

    Delphi Creating A New Application With DelphiVCL.Application.Create

    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...
  12. FireWind

    Delphi All You Need To Know About Application.DialogHandle

    All You Need To Know About Application.DialogHandle By Muhammad Azizul Hakim July 23, 2021 Use the DialogHandle property or DelphiVCL.Application.DialogHandle to provide a mechanism for using non-VCL dialog boxes in an application. Use DialogHandle when displaying a modeless dialog box that...
  13. FireWind

    Delphi What is the FieldAddress Property in DelphiVCL.Application?

    What is the FieldAddress Property in DelphiVCL.Application? By Muhammad Azizul Hakim July 21, 2021 Use the FieldAddress property or DelphiVCL.Application.FieldAddress to return the address of a published object field. FieldAddress is used internally by the component streaming system to access...
  14. FireWind

    Delphi What is the FindComponent Property in DelphiVCL.Application?

    What is the FindComponent Property in DelphiVCL.Application? By Muhammad Azizul Hakim July 20, 2021 Use the FindComponent property or DelphiVCL.Application.FindComponent to indicate whether a given component is owned by the component. FindComponent returns the component in the Components...
  15. FireWind

    Delphi What is the Free Property in DelphiVCL.Application?

    What is the Free Property in DelphiVCL.Application? By Muhammad Azizul Hakim July 19, 2021 Use the Free property or DelphiVCL.Application.Free to destroy an object and free its associated memory, if necessary. Use Free to destroy an object. Free automatically calls the destructor if the...
  16. FireWind

    Delphi Understanding The Purpose of DelphiVCL.Application.Equals

    Understanding The Purpose of DelphiVCL.Application.Equals By Muhammad Azizul Hakim July 17, 2021 Use the Equals property or DelphiVCL.Application.Equals to check whether the current instance and the Obj parameter are equal. The function has one Obj parameter of the TObject type. By default...
  17. FireWind

    Delphi What You Need To Know About Application.EndFunctionInvoke

    What You Need To Know About Application.EndFunctionInvoke By Muhammad Azizul Hakim July 16, 2021 Use the EndFunctionInvoke property or DelphiVCL.Application.EndFunctionInvoke to block the caller until the specified ASyncResult completes. Returns the result from the method that BeginInvoke...
  18. FireWind

    Delphi What Does EnumAllWindowsOnActivateHint Do?

    What Does EnumAllWindowsOnActivateHint Do? By Muhammad Azizul Hakim July 15, 2021 The EnumAllWindowsOnActivateHint property or DelphiVCL.Application.EnumAllWindowsOnActivateHint is a Boolean variable used for hint displaying. EnumAllWindowsOnActivateHint is used internally by VCL for hint...
  19. FireWind

    Delphi How To Understand DelphiVCL.Application.EndInvoke

    How To Understand DelphiVCL.Application.EndInvoke By Muhammad Azizul Hakim July 13, 2021 Use the EndInvoke property or DelphiVCL.Application.EndInvoke to block the caller until the specified ASyncResult completes. Returns the result from the method that BeginInvoke asynchronously executes...
  20. FireWind

    Learn to Code Summer Camp 2021 – Register or Volunteer Now!

    Learn to Code Summer Camp 2021 – Register or Volunteer Now! By Jim McKeeth July 12, 2021 The weather is hot in the northern hemisphere, so that means it is time for the annual Embarcadero sponsored Learn to Code Summer Camp! Our Summer Camps and Boot Camps have been a huge hit in previous...